Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
26 | public function assemble(array $config, ContainerBuilder $container) |
||
27 | { |
||
28 | $this->addTask( |
||
29 | 'bldr_watch.watch', |
||
30 | 'Bldr\Block\Watch\Task\WatchTask', |
||
31 | [ |
||
32 | new Reference('bldr.registry.job'), |
||
33 | [ |
||
34 | 'profiles' => $container->getParameter('profiles'), |
||
35 | 'jobs' => $container->getParameter('jobs') |
||
36 | ] |
||
37 | ] |
||
38 | ); |
||
39 | } |
||
40 | } |
||
41 |