@@ -112,9 +112,9 @@ public function __construct(bool $verbose = false, bool $colors = false, bool $d
112112 {
113113 $ this ->console = new Console ;
114114 $ this ->runtime = new Runtime ;
115- $ this ->debug = $ debug ;
115+ $ this ->debug = $ debug ;
116116 $ this ->verbose = $ verbose ;
117- $ this ->colors = $ colors && $ this ->console ->hasColorSupport ();
117+ $ this ->colors = $ colors && $ this ->console ->hasColorSupport ();
118118 }
119119
120120 /**
@@ -194,7 +194,7 @@ public function write($buffer): void
194194 */
195195 public function onBackupStart (Event \Backup \Start $ event ): void
196196 {
197- $ this ->numBackups ++;
197+ $ this ->numBackups ++;
198198 if ($ this ->debug ) {
199199 $ backup = $ event ->getConfiguration ();
200200 $ this ->writeWithAsterisk ('backup: [ ' . $ backup ->getSource ()->type . '] ' );
@@ -257,7 +257,7 @@ public function onBackupEnd(Event\Backup\End $event): void
257257 */
258258 public function onCheckStart (Event \Check \Start $ event ): void
259259 {
260- $ this ->numChecks ++;
260+ $ this ->numChecks ++;
261261 if ($ this ->debug ) {
262262 $ check = $ event ->getConfiguration ();
263263 $ this ->writeWithAsterisk ('check: [ ' . $ check ->type . '] ' );
@@ -298,7 +298,7 @@ public function onCheckEnd(Event\Check\End $event): void
298298 */
299299 public function onCryptStart (Event \Crypt \Start $ event ): void
300300 {
301- $ this ->numCrypts ++;
301+ $ this ->numCrypts ++;
302302 if ($ this ->debug ) {
303303 $ crypt = $ event ->getConfiguration ();
304304 $ this ->writeWithAsterisk ('crypt: [ ' . $ crypt ->type . '] ' );
@@ -348,7 +348,7 @@ public function onCryptEnd(Event\Crypt\End $event): void
348348 */
349349 public function onSyncStart (Event \Sync \Start $ event ): void
350350 {
351- $ this ->numSyncs ++;
351+ $ this ->numSyncs ++;
352352 if ($ this ->debug ) {
353353 $ sync = $ event ->getConfiguration ();
354354 $ this ->writeWithAsterisk ('sync: [ ' . $ sync ->type . '] ' );
@@ -398,7 +398,7 @@ public function onSyncEnd(Event\Sync\End $event): void
398398 */
399399 public function onCleanupStart (Event \Cleanup \Start $ event ): void
400400 {
401- $ this ->numCleanups ++;
401+ $ this ->numCleanups ++;
402402 if ($ this ->debug ) {
403403 $ cleanup = $ event ->getConfiguration ();
404404 $ this ->writeWithAsterisk ('cleanup: [ ' . $ cleanup ->type . '] ' );
@@ -567,16 +567,16 @@ protected function printBackupVerbose(Result\Backup $backup): void
567567 );
568568 }
569569 $ chExecuted = str_pad ($ backup ->checkCount (), 8 , ' ' , STR_PAD_LEFT );
570- $ chFailed = str_pad ($ backup ->checkCountFailed (), 6 , ' ' , STR_PAD_LEFT );
570+ $ chFailed = str_pad ($ backup ->checkCountFailed (), 6 , ' ' , STR_PAD_LEFT );
571571 $ crExecuted = str_pad ($ backup ->cryptCount (), 8 , ' ' , STR_PAD_LEFT );
572- $ crSkipped = str_pad ($ backup ->cryptCountSkipped (), 7 , ' ' , STR_PAD_LEFT );
573- $ crFailed = str_pad ($ backup ->cryptCountFailed (), 6 , ' ' , STR_PAD_LEFT );
572+ $ crSkipped = str_pad ($ backup ->cryptCountSkipped (), 7 , ' ' , STR_PAD_LEFT );
573+ $ crFailed = str_pad ($ backup ->cryptCountFailed (), 6 , ' ' , STR_PAD_LEFT );
574574 $ syExecuted = str_pad ($ backup ->syncCount (), 8 , ' ' , STR_PAD_LEFT );
575- $ sySkipped = str_pad ($ backup ->syncCountSkipped (), 7 , ' ' , STR_PAD_LEFT );
576- $ syFailed = str_pad ($ backup ->syncCountFailed (), 6 , ' ' , STR_PAD_LEFT );
575+ $ sySkipped = str_pad ($ backup ->syncCountSkipped (), 7 , ' ' , STR_PAD_LEFT );
576+ $ syFailed = str_pad ($ backup ->syncCountFailed (), 6 , ' ' , STR_PAD_LEFT );
577577 $ clExecuted = str_pad ($ backup ->cleanupCount (), 8 , ' ' , STR_PAD_LEFT );
578- $ clSkipped = str_pad ($ backup ->cleanupCountSkipped (), 7 , ' ' , STR_PAD_LEFT );
579- $ clFailed = str_pad ($ backup ->cleanupCountFailed (), 6 , ' ' , STR_PAD_LEFT );
578+ $ clSkipped = str_pad ($ backup ->cleanupCountSkipped (), 7 , ' ' , STR_PAD_LEFT );
579+ $ clFailed = str_pad ($ backup ->cleanupCountFailed (), 6 , ' ' , STR_PAD_LEFT );
580580
581581 $ out = PHP_EOL . ' | executed | skipped | failed | ' . PHP_EOL
582582 . '----------+----------+---------+--------+ ' . PHP_EOL
0 commit comments