@@ -91,8 +91,8 @@ |
||
91 | 91 | $mimeType = MIMEType::fromNative($mimeTypeString); |
92 | 92 | |
93 | 93 | $fileId = new UUID($this->uuidGenerator->generate()); |
94 | - $fileName = $fileId . '.' . $file->guessExtension(); |
|
95 | - $destination = $this->getUploadDirectory() . '/' . $fileName; |
|
94 | + $fileName = $fileId.'.'.$file->guessExtension(); |
|
95 | + $destination = $this->getUploadDirectory().'/'.$fileName; |
|
96 | 96 | $stream = fopen($file->getRealPath(), 'r+'); |
97 | 97 | $this->filesystem->writeStream($destination, $stream); |
98 | 98 | fclose($stream); |
@@ -147,9 +147,9 @@ discard block |
||
147 | 147 | { |
148 | 148 | $q = $this->connection->createQueryBuilder(); |
149 | 149 | $q->select('event') |
150 | - ->from($this->tableName) |
|
151 | - ->where('place = ?') |
|
152 | - ->setParameter(0, $placeId); |
|
150 | + ->from($this->tableName) |
|
151 | + ->where('place = ?') |
|
152 | + ->setParameter(0, $placeId); |
|
153 | 153 | |
154 | 154 | $results = $q->execute(); |
155 | 155 | |
@@ -184,8 +184,8 @@ discard block |
||
184 | 184 | { |
185 | 185 | $q = $this->connection->createQueryBuilder(); |
186 | 186 | $q->delete($this->tableName) |
187 | - ->where('event = ?') |
|
188 | - ->setParameter(0, $eventId); |
|
187 | + ->where('event = ?') |
|
188 | + ->setParameter(0, $eventId); |
|
189 | 189 | |
190 | 190 | $q->execute(); |
191 | 191 | } |
@@ -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 | } |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | */ |
68 | 68 | private function storeRelation($eventId, $relationType, $itemId) |
69 | 69 | { |
70 | - $transaction = function ($connection) use ($eventId, $relationType, $itemId) { |
|
70 | + $transaction = function($connection) use ($eventId, $relationType, $itemId) { |
|
71 | 71 | if ($this->eventHasRelations($connection, $eventId)) { |
72 | 72 | $this->updateEventRelation($connection, $eventId, $relationType, $itemId); |
73 | 73 | } else { |
@@ -18,7 +18,7 @@ |
||
18 | 18 | { |
19 | 19 | if (!is_string($eventId)) { |
20 | 20 | throw new \InvalidArgumentException( |
21 | - 'Expected eventId to be a string, received ' . gettype($eventId) |
|
21 | + 'Expected eventId to be a string, received '.gettype($eventId) |
|
22 | 22 | ); |
23 | 23 | } |
24 | 24 |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | $this->mailMap[$key] = $this->wrapped->byEmail($email); |
52 | 52 | } else { |
53 | 53 | $this->logger->info( |
54 | - 'found user id mapping of ' . $email->toNative() . ' in cache' |
|
54 | + 'found user id mapping of '.$email->toNative().' in cache' |
|
55 | 55 | ); |
56 | 56 | } |
57 | 57 | |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | $this->nickMap[$key] = $this->wrapped->byNick($nick); |
69 | 69 | } else { |
70 | 70 | $this->logger->info( |
71 | - 'found user id mapping of ' . $nick->toNative() . ' in cache' |
|
71 | + 'found user id mapping of '.$nick->toNative().' in cache' |
|
72 | 72 | ); |
73 | 73 | } |
74 | 74 |
@@ -44,7 +44,7 @@ |
||
44 | 44 | |
45 | 45 | if (!$userId) { |
46 | 46 | $this->logger->warning( |
47 | - 'Unable to find user with identifier ' . $createdByIdentifier |
|
47 | + 'Unable to find user with identifier '.$createdByIdentifier |
|
48 | 48 | ); |
49 | 49 | } |
50 | 50 | } catch (Exception $e) { |
@@ -64,7 +64,7 @@ |
||
64 | 64 | |
65 | 65 | /** |
66 | 66 | * @param StringLiteral $createdByIdentifier |
67 | - * @return String |
|
67 | + * @return StringLiteral|null |
|
68 | 68 | */ |
69 | 69 | private function resolveByEmailOrByNick(StringLiteral $createdByIdentifier) |
70 | 70 | { |
@@ -38,7 +38,7 @@ |
||
38 | 38 | } |
39 | 39 | |
40 | 40 | /** |
41 | - * @return mixed The object instance |
|
41 | + * @return AbstractContactPointUpdated The object instance |
|
42 | 42 | */ |
43 | 43 | public static function deserialize(array $data) |
44 | 44 | { |
@@ -48,7 +48,7 @@ |
||
48 | 48 | public function validateUrl(Url $url) |
49 | 49 | { |
50 | 50 | $identifier = $this->iriOfferIdentifierFactory->fromIri( |
51 | - \ValueObjects\Web\Url::fromNative((string) $url) |
|
51 | + \ValueObjects\Web\Url::fromNative((string)$url) |
|
52 | 52 | ); |
53 | 53 | $offerType = $identifier->getType(); |
54 | 54 | $offerId = $identifier->getId(); |
@@ -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 | ] |
@@ -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(), |