| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 36 | protected function registerFeeds() |
||
| 37 | { |
||
| 38 | collect(config('laravel-feed.feeds'))->each(function ($feedConfiguration) { |
||
| 39 | if (!$feedConfiguration['url']) { |
||
| 40 | return; |
||
| 41 | } |
||
| 42 | $this->registerRoute($feedConfiguration); |
||
| 43 | }); |
||
| 44 | } |
||
| 45 | |||
| 46 | protected function registerRoute($feedConfiguration) |
||
| 55 |