Conditions | 2 |
Paths | 2 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | public function restore(string $restorePath = "") |
||
18 | { |
||
19 | $restorePath = !empty($restorePath) ? '"' . $restorePath . '"' : '"' . $this->restorePath . '"'; |
||
20 | $restoreCommand = $this->prepareRestoreCommand($restorePath); |
||
21 | $this->command = $this->removeExtraSpaces($restoreCommand); |
||
22 | $this->run(); |
||
23 | } |
||
56 |