| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 49 | public function execute() |
||
| 50 | { |
||
| 51 | $ionicePath = $this->module->binaries['ionice']; |
||
| 52 | $unzipPath = $this->module->binaries['unzip']; |
||
| 53 | $command = "cd {$this->targetFolder} && {$ionicePath} -c{$this->io} {$unzipPath} -o {$this->backupFilePath}"; |
||
| 54 | exec($command, $r); |
||
| 55 | return true; |
||
| 56 | } |
||
| 58 |