Completed
Pull Request — master (#268)
by
unknown
04:41
created
src/Result/PrinterCli.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
      */
195 195
     public function onBackupStart(Event\Backup\Start $event): void
196 196
     {
197
-        $this->numBackups ++;
197
+        $this->numBackups++;
198 198
         if ($this->debug) {
199 199
             $backup = $event->getConfiguration();
200 200
             $this->writeWithAsterisk('backup: [' . $backup->getSource()->type . '] ');
@@ -257,7 +257,7 @@  discard block
 block discarded – undo
257 257
      */
258 258
     public function onCheckStart(Event\Check\Start $event): void
259 259
     {
260
-        $this->numChecks ++;
260
+        $this->numChecks++;
261 261
         if ($this->debug) {
262 262
             $check = $event->getConfiguration();
263 263
             $this->writeWithAsterisk('check: [' . $check->type . '] ');
@@ -298,7 +298,7 @@  discard block
 block discarded – undo
298 298
      */
299 299
     public function onCryptStart(Event\Crypt\Start $event): void
300 300
     {
301
-        $this->numCrypts ++;
301
+        $this->numCrypts++;
302 302
         if ($this->debug) {
303 303
             $crypt = $event->getConfiguration();
304 304
             $this->writeWithAsterisk('crypt: [' . $crypt->type . '] ');
@@ -348,7 +348,7 @@  discard block
 block discarded – undo
348 348
      */
349 349
     public function onSyncStart(Event\Sync\Start $event): void
350 350
     {
351
-        $this->numSyncs ++;
351
+        $this->numSyncs++;
352 352
         if ($this->debug) {
353 353
             $sync = $event->getConfiguration();
354 354
             $this->writeWithAsterisk('sync: [' . $sync->type . '] ');
@@ -398,7 +398,7 @@  discard block
 block discarded – undo
398 398
      */
399 399
     public function onCleanupStart(Event\Cleanup\Start $event): void
400 400
     {
401
-        $this->numCleanups ++;
401
+        $this->numCleanups++;
402 402
         if ($this->debug) {
403 403
             $cleanup = $event->getConfiguration();
404 404
             $this->writeWithAsterisk('cleanup: [' . $cleanup->type . '] ');
Please login to merge, or discard this patch.