1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-12 09:09:35 +01:00
parallel/tests/Worker/WorkerForkTest.php
2015-08-28 20:55:30 -05:00

16 lines
263 B
PHP

<?php
namespace Icicle\Tests\Concurrent\Worker;
use Icicle\Concurrent\Worker\WorkerFork;
/**
* @requires extension pcntl
*/
class WorkerForkTest extends AbstractWorkerTest
{
protected function createWorker()
{
return new WorkerFork();
}
}