Completed
Pull Request — master (#252)
by Kristof
09:20 queued 04:17
created
EventExport/Format/HTML/Uitpas/EventInfo/CultureFeedEventInfoService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@
 block discarded – undo
158 158
         } catch (\Exception $e) {
159 159
             if ($this->logger) {
160 160
                 $this->logger->error(
161
-                    'Can\'t retrieve promotions for event with id:' . $event->cdbid,
161
+                    'Can\'t retrieve promotions for event with id:'.$event->cdbid,
162 162
                     ['exception' => $e]
163 163
                 );
164 164
             }
Please login to merge, or discard this patch.
src/EventExport/Format/HTML/HTMLEventFormatter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
         $formattedEvent = [];
108 108
 
109 109
         if (isset($event->image)) {
110
-            $formattedEvent['image'] = 'http:' . $event->image;
110
+            $formattedEvent['image'] = 'http:'.$event->image;
111 111
         }
112 112
 
113 113
         $type = EventType::fromJSONLDEvent($eventString);
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
     {
266 266
         return array_keys(array_filter(
267 267
             $this->brandSpecs,
268
-            function (EventSpecificationInterface $brandSpec) use ($event) {
268
+            function(EventSpecificationInterface $brandSpec) use ($event) {
269 269
                 return $brandSpec->isSatisfiedBy($event);
270 270
             }
271 271
         ));
Please login to merge, or discard this patch.
src/EventExport/Format/HTML/Properties/Brand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 
18 18
         if (!in_array($brand, $knownBrands)) {
19 19
             throw new InvalidBrandException(
20
-                "Unknown brand '{$brand}'', use one of: " .
20
+                "Unknown brand '{$brand}'', use one of: ".
21 21
                 implode(', ', $knownBrands)
22 22
             );
23 23
         }
Please login to merge, or discard this patch.
src/EventExport/Format/TabularData/OOXML/OOXMLFileWriter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
         $this->spreadsheet->getActiveSheet()->fromArray(
44 44
             $row,
45 45
             '',
46
-            'A' . $this->i
46
+            'A'.$this->i
47 47
         );
48 48
 
49 49
         $this->i++;
Please login to merge, or discard this patch.
src/EventExport/Format/TabularData/CSV/CSVFileWriter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     {
20 20
         $this->f = fopen($filePath, 'w');
21 21
         if (false === $this->f) {
22
-            throw new \RuntimeException('Unable to open file for writing: ' . $filePath);
22
+            throw new \RuntimeException('Unable to open file for writing: '.$filePath);
23 23
         }
24 24
 
25 25
         $this->delimiter = ',';
Please login to merge, or discard this patch.
src/UiTID/InMemoryCacheDecoratedUsers.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/UiTID/CdbXmlCreatedByToUserIdResolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
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) {
Please login to merge, or discard this patch.
src/Event/EventEvent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@
 block discarded – undo
98 98
     ) {
99 99
         if (!is_string($eventId)) {
100 100
             throw new \InvalidArgumentException(
101
-                'Expected eventId to be a string, received ' . gettype($eventId)
101
+                'Expected eventId to be a string, received '.gettype($eventId)
102 102
             );
103 103
         }
104 104
 
Please login to merge, or discard this patch.
src/Organizer/Organizer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@
 block discarded – undo
98 98
     public function applyOrganizerImportedFromUDB2(
99 99
         OrganizerImportedFromUDB2 $organizerImported
100 100
     ) {
101
-        $this->actorId = (string) $organizerImported->getActorId();
101
+        $this->actorId = (string)$organizerImported->getActorId();
102 102
     }
103 103
 
104 104
     /**
Please login to merge, or discard this patch.