1 | <?php |
||
5 | class ProcessBuilderFactory implements ProcessBuilderFactoryInterface |
||
6 | { |
||
7 | /** |
||
8 | * @var ProcessFactoryInterface |
||
9 | */ |
||
10 | private $processFactory; |
||
11 | |||
12 | /** |
||
13 | * @param ProcessFactoryInterface $processFactory |
||
14 | */ |
||
15 | public function __construct(ProcessFactoryInterface $processFactory) |
||
19 | |||
20 | /** |
||
21 | * @inheritdoc |
||
22 | */ |
||
23 | public function create(array $arguments = []) |
||
27 | } |
||
28 |