| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 41 | protected function registerCommands(Container $container): FeedServiceProvider |
||
| 42 | { |
||
| 43 | $container->extend('commands', function (array $commands, Container $container) { |
||
| 44 | $commands[] = new RunFeedReaderCommand($container->offsetGet('feed_reader_manager')); |
||
| 45 | |||
| 46 | return $commands; |
||
| 47 | }); |
||
| 48 | |||
| 49 | return $this; |
||
| 50 | } |
||
| 52 |