@@ -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(); |
@@ -25,11 +25,11 @@ |
||
25 | 25 | */ |
26 | 26 | public function byId(StringLiteral $facilityId) |
27 | 27 | { |
28 | - if (!array_key_exists((string) $facilityId, $this->facilities)) { |
|
28 | + if (!array_key_exists((string)$facilityId, $this->facilities)) { |
|
29 | 29 | throw new \Exception("Unknown facility id '{$facilityId}'"); |
30 | 30 | } |
31 | 31 | |
32 | - return $this->facilities[(string) $facilityId]; |
|
32 | + return $this->facilities[(string)$facilityId]; |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | /** |
@@ -49,7 +49,7 @@ |
||
49 | 49 | public function getNames() |
50 | 50 | { |
51 | 51 | return [ |
52 | - new StringLiteral((string) $this->label), |
|
52 | + new StringLiteral((string)$this->label), |
|
53 | 53 | ]; |
54 | 54 | } |
55 | 55 |
@@ -38,7 +38,7 @@ |
||
38 | 38 | public function getNames() |
39 | 39 | { |
40 | 40 | return array_map( |
41 | - function (Label $label) { |
|
41 | + function(Label $label) { |
|
42 | 42 | return new StringLiteral($label->getName()->toString()); |
43 | 43 | }, |
44 | 44 | $this->getLabels()->toArray() |
@@ -38,7 +38,7 @@ |
||
38 | 38 | public function getNames() |
39 | 39 | { |
40 | 40 | return array_map( |
41 | - function (Label $label) { |
|
41 | + function(Label $label) { |
|
42 | 42 | return new StringLiteral($label->getName()->toString()); |
43 | 43 | }, |
44 | 44 | $this->getLabels()->toArray() |
@@ -112,21 +112,21 @@ |
||
112 | 112 | public static function fromUdb3ModelContactPoint(Udb3ModelContactPoint $contactPoint) |
113 | 113 | { |
114 | 114 | $phones = array_map( |
115 | - function (TelephoneNumber $phone) { |
|
115 | + function(TelephoneNumber $phone) { |
|
116 | 116 | return $phone->toString(); |
117 | 117 | }, |
118 | 118 | $contactPoint->getTelephoneNumbers()->toArray() |
119 | 119 | ); |
120 | 120 | |
121 | 121 | $emails = array_map( |
122 | - function (EmailAddress $emailAddress) { |
|
122 | + function(EmailAddress $emailAddress) { |
|
123 | 123 | return $emailAddress->toString(); |
124 | 124 | }, |
125 | 125 | $contactPoint->getEmailAddresses()->toArray() |
126 | 126 | ); |
127 | 127 | |
128 | 128 | $urls = array_map( |
129 | - function (Url $url) { |
|
129 | + function(Url $url) { |
|
130 | 130 | return $url->toString(); |
131 | 131 | }, |
132 | 132 | $contactPoint->getUrls()->toArray() |
@@ -248,7 +248,7 @@ discard block |
||
248 | 248 | // Convert the imported labels to label collection. |
249 | 249 | $importLabelsCollection = new LabelCollection( |
250 | 250 | array_map( |
251 | - function (\CultuurNet\UDB3\Model\ValueObject\Taxonomy\Label\Label $label) { |
|
251 | + function(\CultuurNet\UDB3\Model\ValueObject\Taxonomy\Label\Label $label) { |
|
252 | 252 | return new Label( |
253 | 253 | $label->getName()->toString(), |
254 | 254 | $label->isVisible() |
@@ -272,7 +272,7 @@ discard block |
||
272 | 272 | foreach ($addedLabels->asArray() as $addedLabel) { |
273 | 273 | $importLabels = $importLabels->with( |
274 | 274 | new \CultuurNet\UDB3\Model\ValueObject\Taxonomy\Label\Label( |
275 | - new LabelName((string) $addedLabel), |
|
275 | + new LabelName((string)$addedLabel), |
|
276 | 276 | $addedLabel->isVisible() |
277 | 277 | ) |
278 | 278 | ); |
@@ -338,7 +338,7 @@ discard block |
||
338 | 338 | protected function applyOrganizerImportedFromUDB2( |
339 | 339 | OrganizerImportedFromUDB2 $organizerImported |
340 | 340 | ) { |
341 | - $this->actorId = (string) $organizerImported->getActorId(); |
|
341 | + $this->actorId = (string)$organizerImported->getActorId(); |
|
342 | 342 | |
343 | 343 | // On import from UDB2 the default main language is 'nl'. |
344 | 344 | $this->mainLanguage = new Language('nl'); |
@@ -49,11 +49,11 @@ discard block |
||
49 | 49 | $normalizedData = [ |
50 | 50 | '@id' => $this->iriGenerator->iri($mediaObject->getMediaObjectId()), |
51 | 51 | '@type' => $type, |
52 | - 'contentUrl' => (string) $mediaObject->getSourceLocation(), |
|
53 | - 'thumbnailUrl' => (string) $mediaObject->getSourceLocation(), |
|
54 | - 'description' => (string) $mediaObject->getDescription(), |
|
55 | - 'copyrightHolder' => (string) $mediaObject->getCopyrightHolder(), |
|
56 | - 'inLanguage' => (string) $mediaObject->getLanguage(), |
|
52 | + 'contentUrl' => (string)$mediaObject->getSourceLocation(), |
|
53 | + 'thumbnailUrl' => (string)$mediaObject->getSourceLocation(), |
|
54 | + 'description' => (string)$mediaObject->getDescription(), |
|
55 | + 'copyrightHolder' => (string)$mediaObject->getCopyrightHolder(), |
|
56 | + 'inLanguage' => (string)$mediaObject->getLanguage(), |
|
57 | 57 | ]; |
58 | 58 | |
59 | 59 | return $normalizedData; |
@@ -61,18 +61,18 @@ discard block |
||
61 | 61 | |
62 | 62 | public function serializeMimeType(MIMEType $mimeType) |
63 | 63 | { |
64 | - $typeParts = explode('/', (string) $mimeType); |
|
64 | + $typeParts = explode('/', (string)$mimeType); |
|
65 | 65 | $type = array_shift($typeParts); |
66 | 66 | |
67 | 67 | if ($type === 'image') { |
68 | 68 | return 'schema:ImageObject'; |
69 | 69 | } |
70 | 70 | |
71 | - if ((string) $mimeType === 'application/octet-stream') { |
|
71 | + if ((string)$mimeType === 'application/octet-stream') { |
|
72 | 72 | return 'schema:mediaObject'; |
73 | 73 | } |
74 | 74 | |
75 | - throw new UnsupportedException('Unsupported MIME-type "'. $mimeType .'"'); |
|
75 | + throw new UnsupportedException('Unsupported MIME-type "'.$mimeType.'"'); |
|
76 | 76 | } |
77 | 77 | |
78 | 78 | public function deserialize($data, $type, $format, array $context = array()) |