| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 13 |
| Ratio | 100 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | public function registerServices($di) |
||
| 14 | { |
||
| 15 | $dispatcher = $di->get('dispatcher'); |
||
| 16 | $dispatcher->setDefaultNamespace("Cms\Controller"); |
||
| 17 | $di->set('dispatcher', $dispatcher); |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Setting up the view component |
||
| 21 | */ |
||
| 22 | $view = $di->get('view'); |
||
| 23 | $view->setViewsDir(__DIR__ . '/views/'); |
||
| 24 | |||
| 25 | } |
||
| 26 | |||
| 27 | } |