1
0
mirror of https://github.com/danog/parallel.git synced 2025-01-10 06:38:15 +01:00
parallel/test/Context/Fixtures/sleep-parallel.php

8 lines
113 B
PHP
Raw Normal View History

2019-02-14 07:56:27 +01:00
<?php
use Amp\Parallel\Sync\Channel;
return function (Channel $channel, int $time = 1) {
\sleep($time);
};