mirror of
https://github.com/danog/parallel.git
synced 2025-01-06 04:38:21 +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');
|
|
};
|