| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 42 | public function onRender(HomepageRenderEvent $event) |
||
| 43 | { |
||
| 44 | //$services = $this->serviceManager->getServices(); |
||
| 45 | $services = [ |
||
| 46 | ['$ref'=>'ref', 'profile' => 'jacob'] |
||
| 47 | ]; |
||
| 48 | foreach ($services as $service) { |
||
| 49 | $event->addRoute($service['$ref'], $service['profile']); |
||
| 50 | } |
||
| 51 | } |
||
| 52 | } |
||
| 53 |