streams/vendor/symfony/process/Tests/ThreeSecondProcess.php
2021-05-27 12:29:06 +10:00

14 lines
291 B
PHP

<?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';