mirror of
https://github.com/danog/parallel.git
synced 2024-12-04 18:47:50 +01:00
13 lines
235 B
PHP
13 lines
235 B
PHP
<?php
|
|
namespace Icicle\Tests\Concurrent\Worker;
|
|
|
|
use Icicle\Concurrent\Worker\WorkerProcess;
|
|
|
|
class WorkerProcessTest extends AbstractWorkerTest
|
|
{
|
|
protected function createWorker()
|
|
{
|
|
return new WorkerProcess();
|
|
}
|
|
}
|