@@ -16,7 +16,7 @@ |
||
16 | 16 | */ |
17 | 17 | public function __construct($iri) |
18 | 18 | { |
19 | - $this->iri = (string) $iri; |
|
19 | + $this->iri = (string)$iri; |
|
20 | 20 | } |
21 | 21 | |
22 | 22 | /** |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | |
42 | 42 | public function removeOrganizer($eventId) |
43 | 43 | { |
44 | - $transaction = function ($connection) use ($eventId) { |
|
44 | + $transaction = function($connection) use ($eventId) { |
|
45 | 45 | if ($this->eventHasRelations($connection, $eventId)) { |
46 | 46 | $this->updateEventRelation($connection, $eventId, 'organizer', null); |
47 | 47 | } |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | */ |
63 | 63 | public function storeRelation($eventId, $relationType, $itemId) |
64 | 64 | { |
65 | - $transaction = function ($connection) use ($eventId, $relationType, $itemId) { |
|
65 | + $transaction = function($connection) use ($eventId, $relationType, $itemId) { |
|
66 | 66 | if ($this->eventHasRelations($connection, $eventId)) { |
67 | 67 | $this->updateEventRelation($connection, $eventId, $relationType, $itemId); |
68 | 68 | } else { |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | $variationLD = $variation->getBody(); |
72 | 72 | $language = 'nl'; |
73 | 73 | |
74 | - $variationLD->description->$language = (string) $descriptionEdited->getDescription(); |
|
74 | + $variationLD->description->$language = (string)$descriptionEdited->getDescription(); |
|
75 | 75 | $this->repository->save($variation->withBody($variationLD)); |
76 | 76 | } |
77 | 77 | |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | |
146 | 146 | // overwrite the description that's already set in the variation |
147 | 147 | if (!$variationLD->description) { |
148 | - $variationLD->description = (object) []; |
|
148 | + $variationLD->description = (object)[]; |
|
149 | 149 | } |
150 | 150 | $variationLD->description->nl = (string)$eventVariationCreated->getDescription(); |
151 | 151 |
@@ -41,7 +41,7 @@ |
||
41 | 41 | throw new EventNotFoundException(); |
42 | 42 | } |
43 | 43 | |
44 | - return (string) $response->getBody(); |
|
44 | + return (string)$response->getBody(); |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | public function eventsOrganizedByOrganizer($organizerId) |
@@ -84,8 +84,8 @@ discard block |
||
84 | 84 | } |
85 | 85 | |
86 | 86 | $this->mountManager->copy( |
87 | - $asset['filesystem'] . '://' . $asset['path'], |
|
88 | - 'tmp://' . $tmpDir . '/' . $asset['path'] |
|
87 | + $asset['filesystem'].'://'.$asset['path'], |
|
88 | + 'tmp://'.$tmpDir.'/'.$asset['path'] |
|
89 | 89 | ); |
90 | 90 | }; |
91 | 91 | } |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | ), |
104 | 104 | // @todo make this configurable |
105 | 105 | 'assets' => new Filesystem( |
106 | - new Local(__DIR__ . '/assets') |
|
106 | + new Local(__DIR__.'/assets') |
|
107 | 107 | ), |
108 | 108 | ] |
109 | 109 | ); |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | |
112 | 112 | protected function removeTemporaryArchiveDirectory($tmpDir) |
113 | 113 | { |
114 | - $this->mountManager->deleteDir('tmp://' . $tmpDir); |
|
114 | + $this->mountManager->deleteDir('tmp://'.$tmpDir); |
|
115 | 115 | } |
116 | 116 | |
117 | 117 | /** |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | protected function createTemporaryArchiveDirectory() |
123 | 123 | { |
124 | 124 | $exportDir = uniqid('html-export'); |
125 | - $path = 'tmp://' . $exportDir; |
|
125 | + $path = 'tmp://'.$exportDir; |
|
126 | 126 | $this->mountManager->createDir($path); |
127 | 127 | |
128 | 128 | return $exportDir; |
@@ -136,7 +136,7 @@ discard block |
||
136 | 136 | */ |
137 | 137 | protected function expandTmpPath($tmpPath) |
138 | 138 | { |
139 | - return $this->tmpDir . '/' . $tmpPath; |
|
139 | + return $this->tmpDir.'/'.$tmpPath; |
|
140 | 140 | } |
141 | 141 | |
142 | 142 | /** |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | */ |
146 | 146 | protected function writeHtml($dir, $events) |
147 | 147 | { |
148 | - $filePath = $dir . '/index.html'; |
|
148 | + $filePath = $dir.'/index.html'; |
|
149 | 149 | |
150 | 150 | // TransformingIteratorIterator requires a Traversable, |
151 | 151 | // so if $events is a regular array we need to wrap it |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | |
159 | 159 | $formattedEvents = new TransformingIteratorIterator( |
160 | 160 | $events, |
161 | - function ($event, $eventLocation) use ($formatter) { |
|
161 | + function($event, $eventLocation) use ($formatter) { |
|
162 | 162 | $urlParts = explode('/', $eventLocation); |
163 | 163 | $eventId = array_pop($urlParts); |
164 | 164 | return $formatter->formatEvent($eventId, $event); |
@@ -68,7 +68,7 @@ |
||
68 | 68 | // If the id is not a valid url we assume it points to the local installation and generate one ourselves. |
69 | 69 | try { |
70 | 70 | $validUrl = \ValueObjects\Web\Url::fromNative($id); |
71 | - $url = new Url((string) $validUrl); |
|
71 | + $url = new Url((string)$validUrl); |
|
72 | 72 | } catch (InvalidNativeArgumentException $e) { |
73 | 73 | $url = new Url( |
74 | 74 | $this->eventIriGenerator->iri($id) |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | |
158 | 158 | if (!$moved) { |
159 | 159 | throw new \RuntimeException( |
160 | - 'Unable to move export file to public directory ' . |
|
160 | + 'Unable to move export file to public directory '. |
|
161 | 161 | $this->publicDirectory |
162 | 162 | ); |
163 | 163 | } |
@@ -244,8 +244,8 @@ discard block |
||
244 | 244 | ) { |
245 | 245 | $fileUniqueId = basename($tmpPath); |
246 | 246 | $extension = $fileFormat->getFileNameExtension(); |
247 | - $finalFileName = $fileUniqueId . '.' . $extension; |
|
248 | - $finalPath = $this->publicDirectory . '/' . $finalFileName; |
|
247 | + $finalFileName = $fileUniqueId.'.'.$extension; |
|
248 | + $finalPath = $this->publicDirectory.'/'.$finalFileName; |
|
249 | 249 | |
250 | 250 | return $finalPath; |
251 | 251 | } |
@@ -264,7 +264,7 @@ discard block |
||
264 | 264 | var_dump($events); |
265 | 265 | |
266 | 266 | foreach ($events as $eventIdentifier) { |
267 | - $event = $this->getEvent((string) $eventIdentifier->getIri(), $logger); |
|
267 | + $event = $this->getEvent((string)$eventIdentifier->getIri(), $logger); |
|
268 | 268 | |
269 | 269 | if ($event) { |
270 | 270 | yield $eventIdentifier->getId() => $event; |
@@ -11,7 +11,7 @@ |
||
11 | 11 | */ |
12 | 12 | public function __construct($uuid, $unique) |
13 | 13 | { |
14 | - $message = 'Not unique: uuid = ' . $uuid . ', unique value = ' . $unique; |
|
14 | + $message = 'Not unique: uuid = '.$uuid.', unique value = '.$unique; |
|
15 | 15 | parent::__construct($message); |
16 | 16 | } |
17 | 17 | } |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | $this->logger->info( |
57 | 57 | 'job_info', |
58 | 58 | [ |
59 | - 'offer_variation_id' => (string) $editDescription->getId(), |
|
59 | + 'offer_variation_id' => (string)$editDescription->getId(), |
|
60 | 60 | ] |
61 | 61 | ); |
62 | 62 | } |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | $this->logger->info( |
71 | 71 | 'job_info', |
72 | 72 | [ |
73 | - 'offer_variation_id' => (string) $deleteEventVariation->getId() |
|
73 | + 'offer_variation_id' => (string)$deleteEventVariation->getId() |
|
74 | 74 | ] |
75 | 75 | ); |
76 | 76 | } |