mirror of
https://github.com/danog/parallel.git
synced 2025-01-08 13:49:06 +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();
|
|
}
|
|
}
|