| 1 | <?php |
||
| 12 | class ListCommand extends Command |
||
| 13 | { |
||
| 14 | protected $signature = 'event-projector:list'; |
||
| 15 | |||
| 16 | protected $description = 'List all event projectors'; |
||
| 17 | |||
| 18 | /** @var \Spatie\EventProjector\EventProjectionist */ |
||
| 19 | protected $eventProjectionist; |
||
| 20 | |||
| 21 | public function __construct(EventProjectionist $eventProjectionist) |
||
| 27 | |||
| 28 | public function handle() |
||
| 31 | } |
||
| 32 |