| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | public function assemble(array $config, ContainerBuilder $container) |
||
| 27 | { |
||
| 28 | $this->addTask('bldr_execute.execute', 'Bldr\Block\Execute\Task\ExecuteTask'); |
||
| 29 | $this->addTask('bldr_execute.parallel', 'Bldr\Block\Execute\Task\ParallelTask'); |
||
| 30 | $this->addTask('bldr_execute.apply', 'Bldr\Block\Execute\Task\ApplyTask'); |
||
| 31 | |||
| 32 | $this->addService('bldr_execute.service.background', 'Bldr\Block\Execute\Service\BackgroundService') |
||
| 33 | ->setPublic(false) |
||
| 34 | ; |
||
| 35 | |||
| 36 | $this->addTask( |
||
| 37 | 'bldr_execute.background', |
||
| 38 | 'Bldr\Block\Execute\Task\BackgroundTask', |
||
| 39 | [new Reference('bldr_execute.service.background')] |
||
| 40 | ); |
||
| 41 | } |
||
| 42 | } |
||
| 43 |