@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | public function jsonSerialize() |
67 | 67 | { |
68 | 68 | return [ |
69 | - '@id' => (string) $this->iri, |
|
69 | + '@id' => (string)$this->iri, |
|
70 | 70 | '@type' => $this->type->toNative(), |
71 | 71 | ]; |
72 | 72 | } |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | { |
79 | 79 | return json_encode( |
80 | 80 | [ |
81 | - 'iri' => (string) $this->iri, |
|
81 | + 'iri' => (string)$this->iri, |
|
82 | 82 | 'id' => $this->id, |
83 | 83 | 'type' => $this->type->toNative(), |
84 | 84 | ] |
@@ -39,12 +39,12 @@ discard block |
||
39 | 39 | public function addLabel(IriOfferIdentifier $identifier, Label $label) |
40 | 40 | { |
41 | 41 | $uri = $this->createUri( |
42 | - (string) $identifier->getIri(), |
|
42 | + (string)$identifier->getIri(), |
|
43 | 43 | 'labels' |
44 | 44 | ); |
45 | 45 | |
46 | 46 | $data = [ |
47 | - 'label' => (string) $label, |
|
47 | + 'label' => (string)$label, |
|
48 | 48 | ]; |
49 | 49 | |
50 | 50 | $request = $this->createJsonPostRequest($uri, $data); |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | private function createUri($iri, $path) |
60 | 60 | { |
61 | 61 | return $this->psr7Factory->createUri( |
62 | - rtrim($iri, '/') . '/' . $path |
|
62 | + rtrim($iri, '/').'/'.$path |
|
63 | 63 | ); |
64 | 64 | } |
65 | 65 |
@@ -91,7 +91,7 @@ |
||
91 | 91 | $this->externalOfferEditingService->addLabel($offerIdentifier, $label); |
92 | 92 | } catch (\Exception $e) { |
93 | 93 | $logContext = [ |
94 | - 'iri' => (string) $offerIdentifier->getIri(), |
|
94 | + 'iri' => (string)$offerIdentifier->getIri(), |
|
95 | 95 | 'command' => $originalCommandName, |
96 | 96 | 'exception' => get_class($e), |
97 | 97 | 'message' => $e->getMessage(), |
@@ -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 | /** |
@@ -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 |
@@ -4,11 +4,9 @@ |
||
4 | 4 | |
5 | 5 | use Exception; |
6 | 6 | use GuzzleHttp\Psr7\Request; |
7 | -use GuzzleHttp\Psr7\Response; |
|
8 | 7 | use GuzzleHttp\Psr7\Uri; |
9 | 8 | use Http\Client\Exception as HttpException; |
10 | 9 | use Http\Client\HttpClient; |
11 | -use Psr\Http\Message\UriInterface; |
|
12 | 10 | |
13 | 11 | class ExternalEventService implements EventServiceInterface |
14 | 12 | { |
@@ -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) |
@@ -36,7 +36,7 @@ |
||
36 | 36 | * @param string $id |
37 | 37 | * A string uniquely identifying an event. |
38 | 38 | * |
39 | - * @return array |
|
39 | + * @return string |
|
40 | 40 | * An event array. |
41 | 41 | * |
42 | 42 | * @throws EventNotFoundException if an event can not be found for the given id |
@@ -9,7 +9,6 @@ |
||
9 | 9 | use CultuurNet\UDB3\Variations\Model\Properties\Url; |
10 | 10 | use CultuurNet\UDB3\Variations\ReadModel\Search\Criteria; |
11 | 11 | use CultuurNet\UDB3\Variations\ReadModel\Search\RepositoryInterface; |
12 | -use Doctrine\Instantiator\Exception\InvalidArgumentException; |
|
13 | 12 | use ValueObjects\Exception\InvalidNativeArgumentException; |
14 | 13 | |
15 | 14 | class VariationDecoratedEventService implements EventServiceInterface |
@@ -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) |
@@ -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); |