Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
28 | public function handle() |
||
29 | { |
||
30 | $command = config('databasebackup.remote_access') ? |
||
31 | config('databasebackup.remote_backup_command') : |
||
32 | config('databasebackup.local_backup_command'); |
||
33 | |||
34 | $returnVar = NULL; |
||
35 | $output = NULL; |
||
36 | |||
37 | exec($command, $output, $returnVar); |
||
38 | $this->info('Database backup was successful.'); |
||
39 | } |
||
41 |