| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 47 | public function register() |
||
| 48 | { |
||
| 49 | $this->app->singleton('seo.title', function ($app) { |
||
| 50 | return new Title($app->make('config')->get('seo.title')); |
||
| 51 | }); |
||
| 52 | |||
| 53 | $this->app->singleton('seo.description', function ($app) { |
||
| 54 | return new Description($app->make('config')->get('seo.description')); |
||
| 55 | }); |
||
| 56 | |||
| 57 | $this->app->singleton('seo.keywords', function ($app) { |
||
| 58 | return new Keywords($app->make('config')->get('seo.keywords')); |
||
| 59 | }); |
||
| 60 | } |
||
| 61 | |||
| 69 |