@@ -49,7 +49,7 @@ |
||
49 | 49 | 'mongodump' => [], |
50 | 50 | 'mysqldump' => [ |
51 | 51 | '/usr/local/mysql/bin', // Mac OS X |
52 | - '/usr/mysql/bin', // Linux |
|
52 | + '/usr/mysql/bin', // Linux |
|
53 | 53 | ], |
54 | 54 | 'tar' => [], |
55 | 55 | ]; |
@@ -39,7 +39,7 @@ |
||
39 | 39 | */ |
40 | 40 | public function __construct(Runner $runner = null) |
41 | 41 | { |
42 | - $this->runner = $runner ? : new Runner\Simple(); |
|
42 | + $this->runner = $runner ?: new Runner\Simple(); |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | /** |
@@ -29,7 +29,7 @@ |
||
29 | 29 | public function sync(Target $target, Result $result) |
30 | 30 | { |
31 | 31 | $sourcePath = $target->getPathname(); |
32 | - $targetPath = $this->path . '/' . $target->getFilename(); |
|
32 | + $targetPath = $this->path . '/' . $target->getFilename(); |
|
33 | 33 | |
34 | 34 | $s3 = S3Client::factory( |
35 | 35 | [ |