1
0
mirror of https://github.com/danog/parallel.git synced 2025-01-09 06:08:16 +01:00
parallel/test/Context/invalid-result-process.php
2017-12-13 13:56:11 -06:00

11 lines
156 B
PHP

<?php
use Amp\Parallel\Sync\Channel;
return function (Channel $channel) {
return new class {
private function __sleep() {
}
};
};