| 1 | <?php |
||
| 9 | class ListCommand extends Command |
||
| 10 | { |
||
| 11 | protected $signature = 'event-projector:list'; |
||
| 12 | |||
| 13 | protected $description = 'List all event projectors'; |
||
| 14 | |||
| 15 | /** @var \Spatie\EventProjector\EventProjectionist */ |
||
| 16 | protected $eventProjectionist; |
||
| 17 | |||
| 18 | public function __construct(EventProjectionist $eventProjectionist) |
||
| 24 | |||
| 25 | public function handle() |
||
| 57 | } |
||
| 58 |