1 | <?php |
||
9 | class ListSnapshotsCommand extends Command |
||
10 | { |
||
11 | protected $signature = 'event-projector:list-snapshots'; |
||
12 | |||
13 | protected $description = 'List all snapshots'; |
||
14 | |||
15 | /** @var \Spatie\EventProjector\Snapshots\SnapshotRepository */ |
||
16 | protected $snapshotRepository; |
||
17 | |||
18 | public function __construct(SnapshotRepository $snapshotRepository) |
||
24 | |||
25 | public function handle() |
||
40 | } |
||
41 |