@@ -49,8 +49,8 @@ |
||
49 | 49 | */ |
50 | 50 | public function __construct(Runner $runner = null, $time = null) |
51 | 51 | { |
52 | - $this->runner = $runner ? : new Runner\Simple(); |
|
53 | - $this->time = $time ? : time(); |
|
52 | + $this->runner = $runner ?: new Runner\Simple(); |
|
53 | + $this->time = $time ?: time(); |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | /** |
@@ -288,14 +288,14 @@ |
||
288 | 288 | |
289 | 289 | $executable = new Executable\Tar($this->pathToTar); |
290 | 290 | $executable->archiveDirectory($this->path) |
291 | - ->useCompression($this->compression) |
|
292 | - ->useCompressProgram($this->compressProgram) |
|
293 | - ->forceLocal($this->forceLocal) |
|
294 | - ->ignoreFailedRead($this->ignoreFailedRead) |
|
295 | - ->removeSourceDirectory($this->removeSourceDir) |
|
296 | - ->throttle($this->throttle) |
|
297 | - ->archiveTo($this->pathToArchive) |
|
298 | - ->dereference($this->dereference); |
|
291 | + ->useCompression($this->compression) |
|
292 | + ->useCompressProgram($this->compressProgram) |
|
293 | + ->forceLocal($this->forceLocal) |
|
294 | + ->ignoreFailedRead($this->ignoreFailedRead) |
|
295 | + ->removeSourceDirectory($this->removeSourceDir) |
|
296 | + ->throttle($this->throttle) |
|
297 | + ->archiveTo($this->pathToArchive) |
|
298 | + ->dereference($this->dereference); |
|
299 | 299 | |
300 | 300 | $this->handleIncrementalBackup($executable); |
301 | 301 |