| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | protected function createProcessFactory(Container $container): ProcessSymfonyServiceProvider |
||
| 26 | { |
||
| 27 | $container->offsetSet('process_factory', function (Container $container) { |
||
| 28 | $rootDir = $container->offsetGet('root_dir'); |
||
| 29 | |||
| 30 | return new ProcessFactory($rootDir . 'tmp' . DIRECTORY_SEPARATOR); |
||
| 31 | }); |
||
| 32 | |||
| 33 | return $this; |
||
| 34 | } |
||
| 36 |