@@ -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 | } |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function sort(array &$entities, StringLiteral $value) |
15 | 15 | { |
16 | - return usort($entities, function ($entity1, $entity2) use ($value) { |
|
16 | + return usort($entities, function($entity1, $entity2) use ($value) { |
|
17 | 17 | /** @var Entity $entity1 */ |
18 | 18 | $weight1 = $this->getWeight($entity1, $value); |
19 | 19 |
@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | $queryBuilder = $this->createQueryBuilder() |
130 | 130 | ->update($this->getTableName()->toNative()) |
131 | 131 | ->set($column, '?') |
132 | - ->where(SchemaConfigurator::UUID_COLUMN . ' = ?') |
|
132 | + ->where(SchemaConfigurator::UUID_COLUMN.' = ?') |
|
133 | 133 | ->setParameters([ |
134 | 134 | $value ? 1 : 0, |
135 | 135 | $uuid->toNative() |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | SchemaConfigurator::COUNT_COLUMN, |
156 | 156 | $newCount < 0 ? 0 : $newCount |
157 | 157 | ) |
158 | - ->where(SchemaConfigurator::UUID_COLUMN . ' = ?') |
|
158 | + ->where(SchemaConfigurator::UUID_COLUMN.' = ?') |
|
159 | 159 | ->setParameters([$uuid->toNative()]); |
160 | 160 | |
161 | 161 | $queryBuilder->execute(); |
@@ -170,7 +170,7 @@ discard block |
||
170 | 170 | $queryBuilder = $this->createQueryBuilder() |
171 | 171 | ->select([SchemaConfigurator::COUNT_COLUMN]) |
172 | 172 | ->from($this->getTableName()->toNative()) |
173 | - ->where(SchemaConfigurator::UUID_COLUMN . ' = ?') |
|
173 | + ->where(SchemaConfigurator::UUID_COLUMN.' = ?') |
|
174 | 174 | ->setParameters([$uuid->toNative()]); |
175 | 175 | |
176 | 176 | $statement = $queryBuilder->execute(); |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | $items = new OfferIdentifierCollection(); |
80 | 80 | $totalItems = $cdbId = $elementName = $offerType = $resultXmlString = null; |
81 | 81 | |
82 | - $resetCurrentResultValues = function () use (&$cdbId, &$elementName, &$offerType, &$resultXmlString) { |
|
82 | + $resetCurrentResultValues = function() use (&$cdbId, &$elementName, &$offerType, &$resultXmlString) { |
|
83 | 83 | $cdbId = null; |
84 | 84 | $elementName = self::CDBXML_TYPE_UNKNOWN; |
85 | 85 | $offerType = self::OFFER_TYPE_UNKNOWN; |
@@ -93,13 +93,13 @@ discard block |
||
93 | 93 | |
94 | 94 | while ($r->read()) { |
95 | 95 | if ($this->xmlNodeIsNumberOfRecordsTag($r)) { |
96 | - $totalItems = new Integer((int) $r->readString()); |
|
96 | + $totalItems = new Integer((int)$r->readString()); |
|
97 | 97 | } |
98 | 98 | |
99 | 99 | if ($this->xmlNodeIsResultOpeningTag($r)) { |
100 | 100 | $resultXmlString = $r->readOuterXml(); |
101 | 101 | $cdbId = $r->getAttribute('cdbid'); |
102 | - $elementName = 'cdbxml.' . $r->localName; |
|
102 | + $elementName = 'cdbxml.'.$r->localName; |
|
103 | 103 | |
104 | 104 | if ($elementName == self::CDBXML_TYPE_EVENT) { |
105 | 105 | $offerType = self::OFFER_TYPE_EVENT; |