Completed
Push — master ( afb84c...f5ece7 )
by Sebastian
03:03
created
src/Factory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -286,7 +286,7 @@
 block discarded – undo
286 286
     {
287 287
         if (!isset(self::$classMap[$type])) {
288 288
             throw new Exception(
289
-                'invalid type, please use only \'' . implode('\', \'', array_keys(self::$classMap)) . '\''
289
+                'invalid type, please use only \''.implode('\', \'', array_keys(self::$classMap)).'\''
290 290
             );
291 291
         }
292 292
     }
Please login to merge, or discard this patch.
src/Configuration/Loader/File.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
     protected function getAdapter($name)
78 78
     {
79 79
         if (!isset($this->adapters[$name])) {
80
-            throw new Exception('no adapter registered with name: ' . $name);
80
+            throw new Exception('no adapter registered with name: '.$name);
81 81
         }
82 82
         return $this->adapters[$name];
83 83
     }
Please login to merge, or discard this patch.
src/Runner.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
             }
92 92
             // make sure the backup should be executed and is not excluded via the --limit option
93 93
             if (!$configuration->isBackupActive($backup->getName())) {
94
-                $this->result->debug('skipping backup: ' . $backup->getName() . PHP_EOL);
94
+                $this->result->debug('skipping backup: '.$backup->getName().PHP_EOL);
95 95
                 continue;
96 96
             }
97 97
             // setup target and collector, reset failure state
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
                 $this->executeCleanup($backup, $target, $collector);
137 137
 
138 138
             } catch (\Exception $e) {
139
-                $this->result->debug('exception: ' . $e->getMessage());
139
+                $this->result->debug('exception: '.$e->getMessage());
140 140
                 $this->result->addError($e);
141 141
                 $this->result->backupFailed($backup);
142 142
                 if ($backup->stopOnFailure()) {
@@ -264,7 +264,7 @@  discard block
 block discarded – undo
264 264
                     $this->result->cryptSkipped($crypt);
265 265
                 } else {
266 266
                     /* @var \phpbu\App\Runner\Crypter $runner */
267
-                    $runner  = $this->factory->createRunner('crypter', $this->configuration->isSimulation());
267
+                    $runner = $this->factory->createRunner('crypter', $this->configuration->isSimulation());
268 268
                     $runner->run($this->factory->createCrypter($crypt->type, $crypt->options), $target, $this->result);
269 269
                 }
270 270
             } catch (Backup\Crypter\Exception $e) {
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
     {
287 287
         /* @var \phpbu\App\Runner\Crypter $runner */
288 288
         /* @var \phpbu\App\Configuration\Backup\Sync $sync */
289
-        $runner  = $this->factory->createRunner('sync', $this->configuration->isSimulation());
289
+        $runner = $this->factory->createRunner('sync', $this->configuration->isSimulation());
290 290
         foreach ($backup->getSyncs() as $sync) {
291 291
             try {
292 292
                 $this->result->syncStart($sync);
Please login to merge, or discard this patch.
src/Log/MailTemplate.php 2 patches
Indentation   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -48,39 +48,39 @@
 block discarded – undo
48 48
     {
49 49
         self::setSnippets([
50 50
             'sBody'                    => 'style="font-family: Arial, Helvetica, sans-serif; ' .
51
-                                                 'background-color:#343b43; ' .
52
-                                                 'font-size: 15px; margin:0; ' .
53
-                                                 'padding:0;"',
51
+                                                    'background-color:#343b43; ' .
52
+                                                    'font-size: 15px; margin:0; ' .
53
+                                                    'padding:0;"',
54 54
             'sTableHeader'             => 'style="width:100%; ' .
55
-                                                 'font-family: Arial, Helvetica, sans-serif; ' .
56
-                                                 'margin:0; color:#e6e6e6;" ' .
57
-                                          'align="center" cellpadding="5" cellspacing="0"',
55
+                                                    'font-family: Arial, Helvetica, sans-serif; ' .
56
+                                                    'margin:0; color:#e6e6e6;" ' .
57
+                                            'align="center" cellpadding="5" cellspacing="0"',
58 58
             'sTableError'              => 'style="width:100%; ' .
59
-                                                 'background-color:#e6e6e6; ' .
60
-                                                 'margin:0 auto 15px; ' .
61
-                                                 'border:1px solid #011516;" ' .
62
-                                          'align="center" cellpadding="5" cellspacing="0"',
59
+                                                    'background-color:#e6e6e6; ' .
60
+                                                    'margin:0 auto 15px; ' .
61
+                                                    'border:1px solid #011516;" ' .
62
+                                            'align="center" cellpadding="5" cellspacing="0"',
63 63
             'sTableErrorCol'           => 'style="border-top: 1px solid #f6f6f6; ' .
64
-                                                 'border-bottom: 1px solid #c9c9c9;"',
64
+                                                    'border-bottom: 1px solid #c9c9c9;"',
65 65
             'sTableContent'            => 'style="width:380px; ' .
66
-                                                 'font-family: Arial, Helvetica, sans-serif; ' .
67
-                                                 'margin:0 auto;" ' .
68
-                                          'align="center" cellpadding="0" cellspacing="0"',
66
+                                                    'font-family: Arial, Helvetica, sans-serif; ' .
67
+                                                    'margin:0 auto;" ' .
68
+                                            'align="center" cellpadding="0" cellspacing="0"',
69 69
             'sTableContentCol'         => 'style="padding:0 10px;"',
70 70
             'sTableStatus'             => 'style="background-color:#%s; ' .
71
-                                                 'width:100%%; ' .
72
-                                                 'margin:0 auto 15px; ' .
73
-                                                 'border:1px solid #011516;" ' .
74
-                                          'align="center" cellpadding="10" cellspacing="0"',
71
+                                                    'width:100%%; ' .
72
+                                                    'margin:0 auto 15px; ' .
73
+                                                    'border:1px solid #011516;" ' .
74
+                                            'align="center" cellpadding="10" cellspacing="0"',
75 75
             'sTableStatusHead'         => 'style="margin:0;"',
76 76
             'sTableStatusText'         => 'style="font-size:16px;"',
77 77
             'sTableBackup'             => 'style="width:100%; font-family: Arial, Helvetica, sans-serif; ' .
78
-                                                 'background-color:#e6e6e6; ' .
79
-                                                 'margin:0 0 15px; ' .
80
-                                                 'border:1px solid #011516;" ' .
81
-                                          'align="center" cellpadding="5" cellspacing="0" width="100%"',
78
+                                                    'background-color:#e6e6e6; ' .
79
+                                                    'margin:0 0 15px; ' .
80
+                                                    'border:1px solid #011516;" ' .
81
+                                            'align="center" cellpadding="5" cellspacing="0" width="100%"',
82 82
             'sTableBackupStatusColumn' => 'style="background-color:#%s; ' .
83
-                                                 'border-bottom:1px solid #747474;"',
83
+                                                    'border-bottom:1px solid #747474;"',
84 84
             'sTableBackupStatusText'   => 'style="float:right;"',
85 85
             'sRowHead'                 => 'style="border-top: 1px solid #f6f6f6; border-bottom: 1px solid #c9c9c9;"',
86 86
             'sRowCheck'                => 'style="border-top: 1px solid #f6f6f6; border-bottom: 1px solid #c9c9c9;"',
Please login to merge, or discard this patch.
Spacing   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -47,39 +47,39 @@
 block discarded – undo
47 47
     public static function setDefaultSnippets()
48 48
     {
49 49
         self::setSnippets([
50
-            'sBody'                    => 'style="font-family: Arial, Helvetica, sans-serif; ' .
51
-                                                 'background-color:#343b43; ' .
52
-                                                 'font-size: 15px; margin:0; ' .
50
+            'sBody'                    => 'style="font-family: Arial, Helvetica, sans-serif; '.
51
+                                                 'background-color:#343b43; '.
52
+                                                 'font-size: 15px; margin:0; '.
53 53
                                                  'padding:0;"',
54
-            'sTableHeader'             => 'style="width:100%; ' .
55
-                                                 'font-family: Arial, Helvetica, sans-serif; ' .
56
-                                                 'margin:0; color:#e6e6e6;" ' .
54
+            'sTableHeader'             => 'style="width:100%; '.
55
+                                                 'font-family: Arial, Helvetica, sans-serif; '.
56
+                                                 'margin:0; color:#e6e6e6;" '.
57 57
                                           'align="center" cellpadding="5" cellspacing="0"',
58
-            'sTableError'              => 'style="width:100%; ' .
59
-                                                 'background-color:#e6e6e6; ' .
60
-                                                 'margin:0 auto 15px; ' .
61
-                                                 'border:1px solid #011516;" ' .
58
+            'sTableError'              => 'style="width:100%; '.
59
+                                                 'background-color:#e6e6e6; '.
60
+                                                 'margin:0 auto 15px; '.
61
+                                                 'border:1px solid #011516;" '.
62 62
                                           'align="center" cellpadding="5" cellspacing="0"',
63
-            'sTableErrorCol'           => 'style="border-top: 1px solid #f6f6f6; ' .
63
+            'sTableErrorCol'           => 'style="border-top: 1px solid #f6f6f6; '.
64 64
                                                  'border-bottom: 1px solid #c9c9c9;"',
65
-            'sTableContent'            => 'style="width:380px; ' .
66
-                                                 'font-family: Arial, Helvetica, sans-serif; ' .
67
-                                                 'margin:0 auto;" ' .
65
+            'sTableContent'            => 'style="width:380px; '.
66
+                                                 'font-family: Arial, Helvetica, sans-serif; '.
67
+                                                 'margin:0 auto;" '.
68 68
                                           'align="center" cellpadding="0" cellspacing="0"',
69 69
             'sTableContentCol'         => 'style="padding:0 10px;"',
70
-            'sTableStatus'             => 'style="background-color:#%s; ' .
71
-                                                 'width:100%%; ' .
72
-                                                 'margin:0 auto 15px; ' .
73
-                                                 'border:1px solid #011516;" ' .
70
+            'sTableStatus'             => 'style="background-color:#%s; '.
71
+                                                 'width:100%%; '.
72
+                                                 'margin:0 auto 15px; '.
73
+                                                 'border:1px solid #011516;" '.
74 74
                                           'align="center" cellpadding="10" cellspacing="0"',
75 75
             'sTableStatusHead'         => 'style="margin:0;"',
76 76
             'sTableStatusText'         => 'style="font-size:16px;"',
77
-            'sTableBackup'             => 'style="width:100%; font-family: Arial, Helvetica, sans-serif; ' .
78
-                                                 'background-color:#e6e6e6; ' .
79
-                                                 'margin:0 0 15px; ' .
80
-                                                 'border:1px solid #011516;" ' .
77
+            'sTableBackup'             => 'style="width:100%; font-family: Arial, Helvetica, sans-serif; '.
78
+                                                 'background-color:#e6e6e6; '.
79
+                                                 'margin:0 0 15px; '.
80
+                                                 'border:1px solid #011516;" '.
81 81
                                           'align="center" cellpadding="5" cellspacing="0" width="100%"',
82
-            'sTableBackupStatusColumn' => 'style="background-color:#%s; ' .
82
+            'sTableBackupStatusColumn' => 'style="background-color:#%s; '.
83 83
                                                  'border-bottom:1px solid #747474;"',
84 84
             'sTableBackupStatusText'   => 'style="float:right;"',
85 85
             'sRowHead'                 => 'style="border-top: 1px solid #f6f6f6; border-bottom: 1px solid #c9c9c9;"',
Please login to merge, or discard this patch.
src/Cli/Executable/Rsync.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
 
218 218
             // use archive mode, verbose and compress if not already done
219
-            $options = '-av' . ($this->compressed ? 'z' : '');
219
+            $options = '-av'.($this->compressed ? 'z' : '');
220 220
             $cmd->addOption($options);
221 221
             $this->configureExcludes($cmd, $this->excludes);
222 222
             $cmd->addOptionIfNotEmpty('--delete', $this->delete, false);
Please login to merge, or discard this patch.
src/Backup/Sync/Ftp.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
     public function sync(Target $target, Result $result)
53 53
     {
54 54
         // silence ftp errors
55
-        $old  = error_reporting(0);
55
+        $old = error_reporting(0);
56 56
         if (!$ftpConnection = ftp_connect($this->host)) {
57 57
             throw new Exception(
58 58
                 sprintf(
Please login to merge, or discard this patch.
src/Result/PrinterCli.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 use phpbu\App\Listener;
7 7
 use phpbu\App\Result;
8 8
 use phpbu\App\Util;
9
-use phpbu\App\Version;
10 9
 use PHP_Timer;
11 10
 use SebastianBergmann\Environment\Console;
12 11
 use SebastianBergmann\Environment\Runtime;
Please login to merge, or discard this patch.
Spacing   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -172,8 +172,8 @@  discard block
 block discarded – undo
172 172
         $configuration = $event->getConfiguration();
173 173
         if ($this->verbose) {
174 174
             $this->write(
175
-                'Runtime:       ' . $this->runtime->getNameWithVersion() . PHP_EOL .
176
-                'Configuration: ' . $configuration->getFilename() . PHP_EOL .
175
+                'Runtime:       '.$this->runtime->getNameWithVersion().PHP_EOL.
176
+                'Configuration: '.$configuration->getFilename().PHP_EOL.
177 177
                 PHP_EOL
178 178
             );
179 179
         }
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
         $this->numBackups++;
190 190
         if ($this->debug) {
191 191
             $backup = $event->getConfiguration();
192
-            $this->writeWithAsterisk('backup: [' . $backup->getSource()->type . '] ');
192
+            $this->writeWithAsterisk('backup: ['.$backup->getSource()->type.'] ');
193 193
         }
194 194
     }
195 195
 
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
     public function onBackupFailed(Event\Backup\Failed $event)
202 202
     {
203 203
         if ($this->debug) {
204
-            $this->writeWithColor('fg-white, bg-red, bold', 'failed' . PHP_EOL);
204
+            $this->writeWithColor('fg-white, bg-red, bold', 'failed'.PHP_EOL);
205 205
         }
206 206
     }
207 207
 
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
     public function onBackupEnd(Event\Backup\End $event)
214 214
     {
215 215
         if ($this->debug) {
216
-            $this->writeWithColor('fg-black, bg-green', 'ok' . PHP_EOL);
216
+            $this->writeWithColor('fg-black, bg-green', 'ok'.PHP_EOL);
217 217
         }
218 218
     }
219 219
 
@@ -227,8 +227,8 @@  discard block
 block discarded – undo
227 227
         $this->numChecks++;
228 228
         if ($this->debug) {
229 229
             $check = $event->getConfiguration();
230
-            $this->writeWithAsterisk('check: [' . $check->type . '] ');
231
-            $this->write('checking: [' . $check->value . '] ');
230
+            $this->writeWithAsterisk('check: ['.$check->type.'] ');
231
+            $this->write('checking: ['.$check->value.'] ');
232 232
         }
233 233
     }
234 234
 
@@ -240,7 +240,7 @@  discard block
 block discarded – undo
240 240
     public function onCheckFailed(Event\Check\Failed $event)
241 241
     {
242 242
         if ($this->debug) {
243
-            $this->writeWithColor('fg-white, bg-red, bold', 'failed' . PHP_EOL);
243
+            $this->writeWithColor('fg-white, bg-red, bold', 'failed'.PHP_EOL);
244 244
         }
245 245
     }
246 246
 
@@ -252,7 +252,7 @@  discard block
 block discarded – undo
252 252
     public function onCheckEnd(Event\Check\End $event)
253 253
     {
254 254
         if ($this->debug) {
255
-            $this->writeWithColor('fg-black, bg-green', 'ok' . PHP_EOL);
255
+            $this->writeWithColor('fg-black, bg-green', 'ok'.PHP_EOL);
256 256
         }
257 257
     }
258 258
 
@@ -266,7 +266,7 @@  discard block
 block discarded – undo
266 266
         $this->numCrypts++;
267 267
         if ($this->debug) {
268 268
             $crypt = $event->getConfiguration();
269
-            $this->writeWithAsterisk('crypt: [' . $crypt->type . '] ');
269
+            $this->writeWithAsterisk('crypt: ['.$crypt->type.'] ');
270 270
         }
271 271
     }
272 272
 
@@ -278,7 +278,7 @@  discard block
 block discarded – undo
278 278
     public function onCryptSkipped(Event\Crypt\Skipped $event)
279 279
     {
280 280
         if ($this->debug) {
281
-            $this->writeWithColor('fg-black, bg-yellow', 'skipped' . PHP_EOL);
281
+            $this->writeWithColor('fg-black, bg-yellow', 'skipped'.PHP_EOL);
282 282
         }
283 283
     }
284 284
 
@@ -290,7 +290,7 @@  discard block
 block discarded – undo
290 290
     public function onCryptFailed(Event\Crypt\Failed $event)
291 291
     {
292 292
         if ($this->debug) {
293
-            $this->writeWithColor('fg-white, bg-red, bold', 'failed' . PHP_EOL);
293
+            $this->writeWithColor('fg-white, bg-red, bold', 'failed'.PHP_EOL);
294 294
         }
295 295
     }
296 296
 
@@ -302,7 +302,7 @@  discard block
 block discarded – undo
302 302
     public function onCryptEnd(Event\Crypt\End $event)
303 303
     {
304 304
         if ($this->debug) {
305
-            $this->writeWithColor('fg-black, bg-green', 'ok' . PHP_EOL);
305
+            $this->writeWithColor('fg-black, bg-green', 'ok'.PHP_EOL);
306 306
         }
307 307
     }
308 308
 
@@ -316,7 +316,7 @@  discard block
 block discarded – undo
316 316
         $this->numSyncs++;
317 317
         if ($this->debug) {
318 318
             $sync = $event->getConfiguration();
319
-            $this->writeWithAsterisk('sync: [' . $sync->type . '] ');
319
+            $this->writeWithAsterisk('sync: ['.$sync->type.'] ');
320 320
         }
321 321
     }
322 322
 
@@ -328,7 +328,7 @@  discard block
 block discarded – undo
328 328
     public function onSyncSkipped(Event\Sync\Skipped $event)
329 329
     {
330 330
         if ($this->debug) {
331
-            $this->writeWithColor('fg-black, bg-yellow', 'skipped' . PHP_EOL);
331
+            $this->writeWithColor('fg-black, bg-yellow', 'skipped'.PHP_EOL);
332 332
         }
333 333
     }
334 334
 
@@ -340,7 +340,7 @@  discard block
 block discarded – undo
340 340
     public function onSyncFailed(Event\Sync\Failed $event)
341 341
     {
342 342
         if ($this->debug) {
343
-            $this->writeWithColor('fg-white, bg-red, bold', 'failed' . PHP_EOL);
343
+            $this->writeWithColor('fg-white, bg-red, bold', 'failed'.PHP_EOL);
344 344
         }
345 345
     }
346 346
 
@@ -352,7 +352,7 @@  discard block
 block discarded – undo
352 352
     public function onSyncEnd(Event\Sync\End $event)
353 353
     {
354 354
         if ($this->debug) {
355
-            $this->writeWithColor('fg-black, bg-green', 'ok' . PHP_EOL);
355
+            $this->writeWithColor('fg-black, bg-green', 'ok'.PHP_EOL);
356 356
         }
357 357
     }
358 358
 
@@ -366,7 +366,7 @@  discard block
 block discarded – undo
366 366
         $this->numCleanups++;
367 367
         if ($this->debug) {
368 368
             $cleanup = $event->getConfiguration();
369
-            $this->writeWithAsterisk('cleanup: [' . $cleanup->type . '] ');
369
+            $this->writeWithAsterisk('cleanup: ['.$cleanup->type.'] ');
370 370
         }
371 371
     }
372 372
 
@@ -378,7 +378,7 @@  discard block
 block discarded – undo
378 378
     public function onCleanupSkipped(Event\Cleanup\Skipped $event)
379 379
     {
380 380
         if ($this->debug) {
381
-            $this->writeWithColor('fg-black, bg-yellow', 'skipped' . PHP_EOL);
381
+            $this->writeWithColor('fg-black, bg-yellow', 'skipped'.PHP_EOL);
382 382
         }
383 383
     }
384 384
 
@@ -390,7 +390,7 @@  discard block
 block discarded – undo
390 390
     public function onCleanupFailed(Event\Cleanup\Failed $event)
391 391
     {
392 392
         if ($this->debug) {
393
-            $this->writeWithColor('fg-white, bg-red, bold', 'failed' . PHP_EOL);
393
+            $this->writeWithColor('fg-white, bg-red, bold', 'failed'.PHP_EOL);
394 394
         }
395 395
     }
396 396
 
@@ -402,7 +402,7 @@  discard block
 block discarded – undo
402 402
     public function onCleanupEnd(Event\Cleanup\End $event)
403 403
     {
404 404
         if ($this->debug) {
405
-            $this->writeWithColor('fg-black, bg-green', 'ok' . PHP_EOL);
405
+            $this->writeWithColor('fg-black, bg-green', 'ok'.PHP_EOL);
406 406
         }
407 407
     }
408 408
 
@@ -414,7 +414,7 @@  discard block
 block discarded – undo
414 414
     public function onDebug(Event\Debug $event)
415 415
     {
416 416
         if ($this->debug) {
417
-            $this->write($event->getMessage() . PHP_EOL);
417
+            $this->write($event->getMessage().PHP_EOL);
418 418
         }
419 419
     }
420 420
 
@@ -452,7 +452,7 @@  discard block
 block discarded – undo
452 452
      */
453 453
     protected function printHeader()
454 454
     {
455
-        $this->write(PHP_Timer::resourceUsage() . PHP_EOL . PHP_EOL);
455
+        $this->write(PHP_Timer::resourceUsage().PHP_EOL.PHP_EOL);
456 456
     }
457 457
 
458 458
     /**
@@ -512,13 +512,13 @@  discard block
 block discarded – undo
512 512
         $clSkipped  = str_pad($backup->cleanupCountSkipped(), 7, ' ', STR_PAD_LEFT);
513 513
         $clFailed   = str_pad($backup->cleanupCountFailed(), 6, ' ', STR_PAD_LEFT);
514 514
 
515
-        $out = PHP_EOL . '          | executed | skipped | failed |' . PHP_EOL
516
-            . '----------+----------+---------+--------+' . PHP_EOL
517
-            . ' checks   | ' . $chExecuted . ' |         | ' . $chFailed . ' |' . PHP_EOL
518
-            . ' crypts   | ' . $crExecuted . ' | ' . $crSkipped . ' | ' . $crFailed . ' |' . PHP_EOL
519
-            . ' syncs    | ' . $syExecuted . ' | ' . $sySkipped . ' | ' . $syFailed . ' |' . PHP_EOL
520
-            . ' cleanups | ' . $clExecuted . ' | ' . $clSkipped . ' | ' . $clFailed . ' |' . PHP_EOL
521
-            . '----------+----------+---------+--------+' . PHP_EOL . PHP_EOL;
515
+        $out = PHP_EOL.'          | executed | skipped | failed |'.PHP_EOL
516
+            . '----------+----------+---------+--------+'.PHP_EOL
517
+            . ' checks   | '.$chExecuted.' |         | '.$chFailed.' |'.PHP_EOL
518
+            . ' crypts   | '.$crExecuted.' | '.$crSkipped.' | '.$crFailed.' |'.PHP_EOL
519
+            . ' syncs    | '.$syExecuted.' | '.$sySkipped.' | '.$syFailed.' |'.PHP_EOL
520
+            . ' cleanups | '.$clExecuted.' | '.$clSkipped.' | '.$clFailed.' |'.PHP_EOL
521
+            . '----------+----------+---------+--------+'.PHP_EOL.PHP_EOL;
522 522
 
523 523
         $this->write($out);
524 524
     }
@@ -539,7 +539,7 @@  discard block
 block discarded – undo
539 539
             $this->writeWithColor(
540 540
                 'fg-black, bg-green',
541 541
                 sprintf(
542
-                    'OK (%d %s, %d %s, %d %s, %d %s, %d %s)' . PHP_EOL,
542
+                    'OK (%d %s, %d %s, %d %s, %d %s, %d %s)'.PHP_EOL,
543 543
                     count($result->getBackups()),
544 544
                     Util\Str::appendPluralS('backup', count($result->getBackups())),
545 545
                     $this->numChecks,
@@ -556,8 +556,8 @@  discard block
 block discarded – undo
556 556
             $this->writeWithColor(
557 557
                 'fg-black, bg-yellow',
558 558
                 sprintf(
559
-                    "WARNING, skipped|failed Crypts, Syncs or Cleanups!" . PHP_EOL .
560
-                    'Backups: %d, Crypts: %d|%d, Syncs: %d|%d, Cleanups: %d|%d ' . PHP_EOL,
559
+                    "WARNING, skipped|failed Crypts, Syncs or Cleanups!".PHP_EOL.
560
+                    'Backups: %d, Crypts: %d|%d, Syncs: %d|%d, Cleanups: %d|%d '.PHP_EOL,
561 561
                     count($result->getBackups()),
562 562
                     $result->cryptsSkippedCount(),
563 563
                     $result->cryptsFailedCount(),
@@ -571,8 +571,8 @@  discard block
 block discarded – undo
571 571
             $this->writeWithColor(
572 572
                 'fg-white, bg-red',
573 573
                 sprintf(
574
-                    "FAILURE!" . PHP_EOL .
575
-                    'Backups: %d, failed Checks: %d, failed Crypts: %d, failed Syncs: %d, failed Cleanups: %d.' . PHP_EOL,
574
+                    "FAILURE!".PHP_EOL.
575
+                    'Backups: %d, failed Checks: %d, failed Crypts: %d, failed Syncs: %d, failed Cleanups: %d.'.PHP_EOL,
576 576
                     count($result->getBackups()),
577 577
                     $result->checksFailedCount(),
578 578
                     $result->cryptsFailedCount(),
@@ -595,7 +595,7 @@  discard block
 block discarded – undo
595 595
         if ($this->colors) {
596 596
             $buffer = Util\Cli::formatWithColor($color, $buffer);
597 597
         }
598
-        $this->write($buffer . PHP_EOL);
598
+        $this->write($buffer.PHP_EOL);
599 599
     }
600 600
 
601 601
     /**
Please login to merge, or discard this patch.
src/Version.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,6 +57,6 @@
 block discarded – undo
57 57
      */
58 58
     public static function getVersionString() : string
59 59
     {
60
-        return 'phpbu ' . self::id() . ' by Sebastian Feldmann and contributors.';
60
+        return 'phpbu '.self::id().' by Sebastian Feldmann and contributors.';
61 61
     }
62 62
 }
Please login to merge, or discard this patch.
src/Cli/Executable/OpenSSL.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
     public function encryptFile(string $file) : OpenSSL
178 178
     {
179 179
         $this->sourceFile = $file;
180
-        $this->targetFile = $file . '.enc';
180
+        $this->targetFile = $file.'.enc';
181 181
         return $this;
182 182
     }
183 183
 
@@ -310,7 +310,7 @@  discard block
 block discarded – undo
310 310
     {
311 311
         $cmd->addOption('smime');
312 312
         $cmd->addOption('-encrypt');
313
-        $cmd->addOption('-' . $this->algorithm);
313
+        $cmd->addOption('-'.$this->algorithm);
314 314
         $cmd->addOption('-binary');
315 315
         $cmd->addOption('-in', $this->sourceFile, ' ');
316 316
         $cmd->addOption('-out', $this->targetFile, ' ');
@@ -325,12 +325,12 @@  discard block
 block discarded – undo
325 325
      */
326 326
     protected function setPasswordOptions(Cmd $cmd)
327 327
     {
328
-        $password = 'pass:' . $this->password;
328
+        $password = 'pass:'.$this->password;
329 329
 
330 330
         $cmd->addOption('enc');
331 331
         $cmd->addOption('-e');
332 332
         $cmd->addOptionIfNotEmpty('-a', $this->base64, false);
333
-        $cmd->addOption('-' . $this->algorithm);
333
+        $cmd->addOption('-'.$this->algorithm);
334 334
         $cmd->addOption('-pass', $password, ' ');
335 335
         $cmd->addOption('-in', $this->sourceFile, ' ');
336 336
         $cmd->addOption('-out', $this->targetFile, ' ');
Please login to merge, or discard this patch.