@@ -11,6 +11,6 @@ |
||
11 | 11 | |
12 | 12 | private function parameter(string $name): string |
13 | 13 | { |
14 | - return ':' . $name; |
|
14 | + return ':'.$name; |
|
15 | 15 | } |
16 | 16 | } |
@@ -62,7 +62,7 @@ |
||
62 | 62 | // @todo transform @id here to an object that has a full URL |
63 | 63 | // when json-encoded |
64 | 64 | $organizers = array_map( |
65 | - function ($resultRow) { |
|
65 | + function($resultRow) { |
|
66 | 66 | return [ |
67 | 67 | '@id' => $this->iriGenerator->iri($resultRow[Columns::ID]), |
68 | 68 | '@type' => 'Organizer', |
@@ -35,7 +35,7 @@ |
||
35 | 35 | ); |
36 | 36 | } |
37 | 37 | |
38 | - return isset($userId) ? (string) $userId : ''; |
|
38 | + return isset($userId) ? (string)$userId : ''; |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | public function getCreationDateTime(): ?DateTimeImmutable |
@@ -103,7 +103,7 @@ |
||
103 | 103 | $this->repository->updateIndex( |
104 | 104 | $itemId, |
105 | 105 | $itemType, |
106 | - (string) $userId, |
|
106 | + (string)$userId, |
|
107 | 107 | $name, |
108 | 108 | $postalCode, |
109 | 109 | $country, |