mirror of
https://github.com/danog/parallel.git
synced 2024-12-12 09:09:35 +01:00
16 lines
271 B
PHP
16 lines
271 B
PHP
<?php
|
|
|
|
namespace Amp\Concurrent\Test\Worker;
|
|
|
|
use Amp\Concurrent\Worker\WorkerFork;
|
|
|
|
/**
|
|
* @group forking
|
|
* @requires extension pcntl
|
|
*/
|
|
class WorkerForkTest extends AbstractWorkerTest {
|
|
protected function createWorker() {
|
|
return new WorkerFork();
|
|
}
|
|
}
|