Completed
Pull Request — master (#384)
by Kristof
08:53
created
src/MyOrganizers/ReadModel/Doctrine/DBALLookupService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
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',
Please login to merge, or discard this patch.
src/Cdb/ItemBaseAdapter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
src/ReadModel/Index/UDB2Projector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@
 block discarded – undo
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,
Please login to merge, or discard this patch.
src/MyOrganizers/ReadModel/Doctrine/DBALHelperTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,6 +11,6 @@
 block discarded – undo
11 11
 
12 12
     public function parameter(string $name): string
13 13
     {
14
-        return ':' . $name;
14
+        return ':'.$name;
15 15
     }
16 16
 }
Please login to merge, or discard this patch.