@@ -119,12 +119,12 @@ |
||
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 |