Completed
Push — master ( 273890...647b73 )
by Sebastian
03:36
created
src/Backup/Cli.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,8 +49,8 @@
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.
src/Backup/Source/Tar.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -288,14 +288,14 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.