| Conditions | 2 |
| Paths | 2 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | public function dump(string $destinationPath = "") |
||
| 10 | { |
||
| 11 | $destinationPath = !empty($destinationPath) ? $destinationPath : $this->destinationPath; |
||
| 12 | $dumpCommand = $this->prepareDumpCommand($destinationPath); |
||
| 13 | $this->command = $this->removeExtraSpaces($dumpCommand); |
||
| 14 | $this->run(); |
||
| 15 | } |
||
| 55 |