Conditions | 6 |
Paths | 8 |
Total Lines | 32 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
19 | public function handle() |
||
20 | { |
||
21 | $snapShots = app(SnapshotRepository::class)->getAll(); |
||
22 | |||
23 | if ($snapShots->isEmpty()) { |
||
24 | $this->warn('No snapshots found. Run `snapshot:create` first to create snapshots.'); |
||
25 | |||
26 | return; |
||
27 | } |
||
28 | |||
29 | if (! $this->confirmToProceed()) { |
||
30 | return; |
||
31 | } |
||
32 | |||
33 | $name = $this->argument('name') ?: $this->askForSnapshotName(); |
||
34 | |||
35 | $snapshot = app(SnapshotRepository::class)->findByName($name); |
||
36 | |||
37 | if (! $snapshot) { |
||
38 | $this->warn("Snapshot `{$name}` does not exist!"); |
||
39 | |||
40 | return; |
||
41 | } |
||
42 | |||
43 | if ($this->option('stream')) { |
||
44 | $snapshot->loadStream($this->option('connection')); |
||
45 | } else { |
||
46 | $snapshot->load($this->option('connection')); |
||
47 | } |
||
48 | |||
49 | $this->info("Snapshot `{$name}` loaded!"); |
||
50 | } |
||
51 | } |
||
52 |