Completed
Push — master ( 9cf9f2...741f1a )
by Bernhard
02:01 queued 11s
created
src/Command/Track.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -119,12 +119,12 @@
 block discarded – undo
119 119
             if ($lastBooking instanceof Booking && $lastBooking->getTicketId() === PauseEntity::PAUSE_TAG_START) {
120 120
                 // create a new pause instance
121 121
                 $now = new \DateTime();
122
-                $pause = new PauseEntity('', true, $now->getTimestamp()-1);
122
+                $pause = new PauseEntity('', true, $now->getTimestamp() - 1);
123 123
                 $storage->store($pause);
124 124
             }
125 125
             $storage->store($booking);
126 126
         } catch (\Exception $e) {
127
-            $output->writeln('<error>' . $e->getMessage() . '</error>');
127
+            $output->writeln('<error>'.$e->getMessage().'</error>');
128 128
             return 1;
129 129
         }
130 130
 
Please login to merge, or discard this patch.