@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | public function __construct() |
77 | 77 | { |
78 | 78 | // calculate the default file path |
79 | - $this->logFilePath = dirname(dirname(__DIR__)) . DIRECTORY_SEPARATOR . 'data' . DIRECTORY_SEPARATOR . self::DATA_NAME; |
|
79 | + $this->logFilePath = dirname(dirname(__DIR__)).DIRECTORY_SEPARATOR.'data'.DIRECTORY_SEPARATOR.self::DATA_NAME; |
|
80 | 80 | // check if the file exists, if not create it |
81 | 81 | if (!is_file($this->logFilePath)) { |
82 | 82 | touch($this->logFilePath); |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | protected function storeNewestStorageContent($bookString) |
142 | 142 | { |
143 | 143 | $path = $this->getLogFilePath(); |
144 | - file_put_contents($path, $bookString . $this->getStorageContent()); |
|
144 | + file_put_contents($path, $bookString.$this->getStorageContent()); |
|
145 | 145 | } |
146 | 146 | |
147 | 147 | /** |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | |
219 | 219 | // increase the booking counter |
220 | 220 | if (!$booking->isMetaBooking() || $countMeta) { |
221 | - $bookingCount ++; |
|
221 | + $bookingCount++; |
|
222 | 222 | } |
223 | 223 | |
224 | 224 | // if clipping is not omitted we will add the rear clipping to our collection. |