Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | public function boot() |
||
15 | { |
||
16 | $this->publishes([ |
||
17 | __DIR__.'/../config/laravel-feed.php' => config_path('laravel-feed.php'), |
||
18 | __DIR__.'/../config/feed-link.php' => config_path('feed-link .php'), |
||
19 | ], 'config'); |
||
20 | |||
21 | $this->loadViewsFrom(__DIR__.'/../resources/views', 'laravel-feed'); |
||
22 | |||
23 | $this->registerFeeds(); |
||
24 | |||
25 | $this->bindFeedsLinks(); |
||
26 | } |
||
27 | |||
67 |