streams/vendor/symfony/process/Tests/ThreeSecondProcess.php

15 lines
291 B
PHP
Raw Normal View History

2021-05-27 02:29:06 +00:00
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
echo 'Worker started';
sleep(3);
echo 'Worker done';