@@ -19,7 +19,7 @@ |
||
| 19 | 19 | { |
| 20 | 20 | if (!is_string($itemId)) { |
| 21 | 21 | throw new \InvalidArgumentException( |
| 22 | - 'Expected itemId to be a string, received ' . gettype($itemId) |
|
| 22 | + 'Expected itemId to be a string, received '.gettype($itemId) |
|
| 23 | 23 | ); |
| 24 | 24 | } |
| 25 | 25 | |
@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | array $openingHours = array() |
| 63 | 63 | ) { |
| 64 | 64 | if (($type->is(CalendarType::MULTIPLE()) || $type->is(CalendarType::SINGLE())) && empty($startDate)) { |
| 65 | - throw new \UnexpectedValueException('Start date can not be empty for calendar type: ' . $type . '.'); |
|
| 65 | + throw new \UnexpectedValueException('Start date can not be empty for calendar type: '.$type.'.'); |
|
| 66 | 66 | } |
| 67 | 67 | |
| 68 | 68 | if ($type->is(CalendarType::PERIODIC()) && (empty($startDate) || empty($endDate))) { |
@@ -102,14 +102,14 @@ discard block |
||
| 102 | 102 | public function serialize() |
| 103 | 103 | { |
| 104 | 104 | $serializedTimestamps = array_map( |
| 105 | - function (Timestamp $timestamp) { |
|
| 105 | + function(Timestamp $timestamp) { |
|
| 106 | 106 | return $timestamp->serialize(); |
| 107 | 107 | }, |
| 108 | 108 | $this->timestamps |
| 109 | 109 | ); |
| 110 | 110 | |
| 111 | 111 | $serializedOpeningHours = array_map( |
| 112 | - function (OpeningHour $openingHour) { |
|
| 112 | + function(OpeningHour $openingHour) { |
|
| 113 | 113 | return $openingHour->serialize(); |
| 114 | 114 | }, |
| 115 | 115 | $this->openingHours |
@@ -137,13 +137,13 @@ discard block |
||
| 137 | 137 | !empty($data['startDate']) ? self::deserializeDateTime($data['startDate']) : null, |
| 138 | 138 | !empty($data['endDate']) ? self::deserializeDateTime($data['endDate']) : null, |
| 139 | 139 | !empty($data['timestamps']) ? array_map( |
| 140 | - function ($timestamp) { |
|
| 140 | + function($timestamp) { |
|
| 141 | 141 | return Timestamp::deserialize($timestamp); |
| 142 | 142 | }, |
| 143 | 143 | $data['timestamps'] |
| 144 | 144 | ) : [], |
| 145 | 145 | !empty($data['openingHours']) ? array_map( |
| 146 | - function ($openingHour) { |
|
| 146 | + function($openingHour) { |
|
| 147 | 147 | return OpeningHour::deserialize($openingHour); |
| 148 | 148 | }, |
| 149 | 149 | $data['openingHours'] |
@@ -271,7 +271,7 @@ discard block |
||
| 271 | 271 | |
| 272 | 272 | if ($calendar instanceof CalendarWithSubEvents) { |
| 273 | 273 | $timestamps = array_map( |
| 274 | - function (DateRange $dateRange) { |
|
| 274 | + function(DateRange $dateRange) { |
|
| 275 | 275 | return Timestamp::fromUdb3ModelDateRange($dateRange); |
| 276 | 276 | }, |
| 277 | 277 | $calendar->getSubEvents()->toArray() |
@@ -280,7 +280,7 @@ discard block |
||
| 280 | 280 | |
| 281 | 281 | if ($calendar instanceof CalendarWithOpeningHours) { |
| 282 | 282 | $openingHours = array_map( |
| 283 | - function (Udb3ModelOpeningHour $openingHour) { |
|
| 283 | + function(Udb3ModelOpeningHour $openingHour) { |
|
| 284 | 284 | return OpeningHour::fromUdb3ModelOpeningHour($openingHour); |
| 285 | 285 | }, |
| 286 | 286 | $calendar->getOpeningHours()->toArray() |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | public function getDaysOfWeek() |
| 53 | 53 | { |
| 54 | 54 | return array_map( |
| 55 | - function ($dayOfWeek) { |
|
| 55 | + function($dayOfWeek) { |
|
| 56 | 56 | return DayOfWeek::fromNative($dayOfWeek); |
| 57 | 57 | }, |
| 58 | 58 | $this->daysOfWeek |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | { |
| 67 | 67 | return array_reduce( |
| 68 | 68 | $data, |
| 69 | - function (DayOfWeekCollection $collection, $dayOfWeek) { |
|
| 69 | + function(DayOfWeekCollection $collection, $dayOfWeek) { |
|
| 70 | 70 | return $collection->addDayOfWeek(DayOfWeek::fromNative($dayOfWeek)); |
| 71 | 71 | }, |
| 72 | 72 | new DayOfWeekCollection() |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | public static function fromUdb3ModelDays(Days $days) |
| 89 | 89 | { |
| 90 | 90 | $days = array_map( |
| 91 | - function (Day $day) { |
|
| 91 | + function(Day $day) { |
|
| 92 | 92 | return DayOfWeek::fromUdb3ModelDay($day); |
| 93 | 93 | }, |
| 94 | 94 | $days->toArray() |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | $tableName |
| 28 | 28 | ) { |
| 29 | 29 | $this->connection = $connection; |
| 30 | - $this->tableName = (string) $tableName; |
|
| 30 | + $this->tableName = (string)$tableName; |
|
| 31 | 31 | } |
| 32 | 32 | |
| 33 | 33 | /** |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | ->select(UniqueDBALEventStoreDecorator::UUID_COLUMN) |
| 42 | 42 | ->from($this->tableName) |
| 43 | 43 | ->where($expr->eq(UniqueDBALEventStoreDecorator::UNIQUE_COLUMN, ':url')) |
| 44 | - ->setParameter(':url', (string) $url) |
|
| 44 | + ->setParameter(':url', (string)$url) |
|
| 45 | 45 | ->execute(); |
| 46 | 46 | |
| 47 | 47 | $uuid = $results->fetchColumn(); |