| Conditions | 2 |
| Paths | 2 |
| Total Lines | 7 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php namespace Anomaly\Streams\Platform\Installer\Console\Command; |
||
| 25 | public function handle(StreamRepositoryInterface $streams) |
||
| 26 | { |
||
| 27 | /* @var StreamInterface $stream */ |
||
| 28 | foreach ($streams->findAllBySearchable(true) as $stream) { |
||
| 29 | $this->dispatch(new CheckEntryIndex($stream)); |
||
| 30 | } |
||
| 31 | } |
||
| 32 | } |
||
| 33 |