1
0
mirror of https://github.com/danog/parallel.git synced 2024-11-30 04:39:01 +01:00

Rename process.php to worker.php

This commit is contained in:
Aaron Piotrowski 2015-10-19 18:07:20 -05:00
parent 15904cdd87
commit 70718e6833
2 changed files with 1 additions and 1 deletions

View File

@ -11,6 +11,6 @@ class WorkerProcess extends Worker
public function __construct()
{
$dir = dirname(dirname(__DIR__)) . '/bin';
parent::__construct(new ChannelledProcess($dir . '/process.php', $dir));
parent::__construct(new ChannelledProcess($dir . '/worker.php', $dir));
}
}