1
0
mirror of https://github.com/danog/file.git synced 2024-11-30 04:19:39 +01:00
file/test/ParallelHandleTest.php
Aaron Piotrowski c6e6c32aaf Drop strict types
Dropping strict types so it is not enforced in callbacks provided by application code.
2016-12-29 20:59:59 -06:00

15 lines
375 B
PHP

<?php
namespace Amp\File\Test;
use Amp\Parallel\Worker\DefaultPool;
class ParallelHandleTest extends HandleTest {
protected function lRun(callable $cb) {
\Interop\Async\Loop::execute(function() use ($cb) {
\Amp\File\filesystem(new \Amp\File\ParallelDriver(new DefaultPool));
\Amp\rethrow(new \Amp\Coroutine($cb()));
});
}
}