mirror of
https://github.com/danog/parallel.git
synced 2024-12-03 18:17:52 +01:00
9 lines
167 B
PHP
9 lines
167 B
PHP
|
<?php
|
||
|
|
||
|
use Amp\Parallel\Sync\Channel;
|
||
|
use Amp\PHPUnit\TestException;
|
||
|
|
||
|
return function (Channel $channel) use ($argv) {
|
||
|
throw new TestException('Test message');
|
||
|
};
|