mirror of
https://github.com/danog/parallel.git
synced 2025-01-10 06:38:15 +01:00
8 lines
113 B
PHP
8 lines
113 B
PHP
<?php
|
|
|
|
use Amp\Parallel\Sync\Channel;
|
|
|
|
return function (Channel $channel, int $time = 1) {
|
|
\sleep($time);
|
|
};
|