Completed
Push — master ( 111ee1...36b437 )
by Sebastian
10:44 queued 06:43
created
build/phar-manifest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -9,16 +9,16 @@
 block discarded – undo
9 9
 } else {
10 10
     $branch = @exec('git rev-parse --abbrev-ref HEAD');
11 11
     $hash   = @exec('git log -1 --format="%H"');
12
-    echo $branch . '@' . $hash;
12
+    echo $branch.'@'.$hash;
13 13
 }
14 14
 echo PHP_EOL;
15 15
 
16
-$lock = json_decode(file_get_contents(__DIR__ . '/../composer.lock'));
16
+$lock = json_decode(file_get_contents(__DIR__.'/../composer.lock'));
17 17
 
18 18
 foreach ($lock->packages as $package) {
19
-    echo $package->name . ': ' . $package->version;
19
+    echo $package->name.': '.$package->version;
20 20
     if (!preg_match('/^[v= ]*(([0-9]+)(\\.([0-9]+)(\\.([0-9]+)(-([0-9]+))?(-?([a-zA-Z-+][a-zA-Z0-9\\.\\-:]*)?)?)?)?)$/', $package->version)) {
21
-        echo '@' . $package->source->reference;
21
+        echo '@'.$package->source->reference;
22 22
     }
23 23
     echo PHP_EOL;
24 24
 }
Please login to merge, or discard this patch.
src/Cli/Executable/Tar.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -216,7 +216,7 @@
 block discarded – undo
216 216
 
217 217
         $tar->addOptionIfNotEmpty('--ignore-failed-read', $this->ignoreFailedRead, false);
218 218
         $tar->addOptionIfNotEmpty('--use-compress-program', $this->compressProgram);
219
-        $tar->addOption('-' . (empty($this->compressProgram) ? $this->compression : '') . 'cf');
219
+        $tar->addOption('-'.(empty($this->compressProgram) ? $this->compression : '').'cf');
220 220
         $tar->addArgument($this->tarPathname);
221 221
         $tar->addOption('-C', dirname($this->path), ' ');
222 222
         $tar->addArgument(basename($this->path));
Please login to merge, or discard this patch.
src/Backup/Sync/Dropbox.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
     public function sync(Target $target, Result $result)
78 78
     {
79 79
         $sourcePath  = $target->getPathname();
80
-        $dropboxPath = $this->path . $target->getFilename();
80
+        $dropboxPath = $this->path.$target->getFilename();
81 81
         $config      = new DropboxConfig("id", "secret", $this->token);
82 82
         $client      = new DropboxApi($config);
83 83
         try {
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
         } catch (\Exception $e) {
87 87
             throw new Exception($e->getMessage(), null, $e);
88 88
         }
89
-        $result->debug('upload: done  (' . $meta->getSize() . ')');
89
+        $result->debug('upload: done  ('.$meta->getSize().')');
90 90
     }
91 91
 
92 92
     /**
@@ -98,9 +98,9 @@  discard block
 block discarded – undo
98 98
     public function simulate(Target $target, Result $result)
99 99
     {
100 100
         $result->debug(
101
-            'sync backup to dropbox' . PHP_EOL
102
-            . '  token:    ********' . PHP_EOL
103
-            . '  location: ' . $this->path
101
+            'sync backup to dropbox'.PHP_EOL
102
+            . '  token:    ********'.PHP_EOL
103
+            . '  location: '.$this->path
104 104
         );
105 105
     }
106 106
 }
Please login to merge, or discard this patch.