Completed
Pull Request — master (#264)
by Kristof
04:49
created
src/Media/SimplePathGenerator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,6 +12,6 @@
 block discarded – undo
12 12
      */
13 13
     public function path(UUID $fileId, String $extension)
14 14
     {
15
-        return (string)$fileId . '.' . (string)$extension;
15
+        return (string)$fileId.'.'.(string)$extension;
16 16
     }
17 17
 }
Please login to merge, or discard this patch.
src/Media/ImageUploaderService.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -91,8 +91,8 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Broadway\CommandHandling\CommandBusInterface;
6 6
 use Broadway\UuidGenerator\UuidGeneratorInterface;
7
-use CultuurNet\Entry\Number;
8 7
 use CultuurNet\UDB3\Media\Commands\UploadImage;
9 8
 use CultuurNet\UDB3\Media\Properties\MIMEType;
10 9
 use League\Flysystem\FilesystemInterface;
Please login to merge, or discard this patch.
src/Event/ReadModel/Relations/Doctrine/DBALRepository.php 2 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -147,9 +147,9 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
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
             }
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
      */
63 63
     public function storeRelation($eventId, $relationType, $itemId)
64 64
     {
65
-        $transaction = function ($connection) use ($eventId, $relationType, $itemId) {
65
+        $transaction = function($connection) use ($eventId, $relationType, $itemId) {
66 66
             if ($this->eventHasRelations($connection, $eventId)) {
67 67
                 $this->updateEventRelation($connection, $eventId, $relationType, $itemId);
68 68
             } else {
Please login to merge, or discard this patch.
src/EventExport/Notification/Swift/NotificationMailer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,6 +47,6 @@
 block discarded – undo
47 47
 
48 48
         $sent = $this->mailer->send($message);
49 49
 
50
-        print 'sent ' . $sent . ' e-mails' . PHP_EOL;
50
+        print 'sent '.$sent.' e-mails'.PHP_EOL;
51 51
     }
52 52
 }
Please login to merge, or discard this patch.
src/EventExport/Format/HTML/HTMLFileWriter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
     ) {
47 47
         if (!$twig) {
48 48
             $loader = new \Twig_Loader_Filesystem(
49
-                __DIR__ . '/templates'
49
+                __DIR__.'/templates'
50 50
             );
51 51
             $twig = new Twig_Environment($loader);
52 52
         }
Please login to merge, or discard this patch.
src/EventExport/Format/HTML/Zipped/ZippedWebArchiveFileWriter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
         );
40 40
 
41 41
         $webArchiveFiles = $this->mountManager->listContents(
42
-            'tmp://' . $directory,
42
+            'tmp://'.$directory,
43 43
             true
44 44
         );
45 45
 
@@ -48,12 +48,12 @@  discard block
 block discarded – undo
48 48
                 continue;
49 49
             }
50 50
 
51
-            $from = $file['filesystem'] . '://' . $file['path'];
51
+            $from = $file['filesystem'].'://'.$file['path'];
52 52
 
53 53
             $pathWithoutUpperDirectory = $this->pathWithoutUpperDirectory(
54 54
                 $file['path']
55 55
             );
56
-            $to = 'zip://html/' . $pathWithoutUpperDirectory;
56
+            $to = 'zip://html/'.$pathWithoutUpperDirectory;
57 57
 
58 58
 
59 59
             $this->mountManager->copy($from, $to);
Please login to merge, or discard this patch.
src/EventExport/Format/HTML/PDF/PDFWebArchiveFileWriter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     public function write($filePath, $events)
41 41
     {
42 42
         $originDirectory = $this->createWebArchiveDirectory($events);
43
-        $originFile = $this->expandTmpPath($originDirectory) . '/index.html';
43
+        $originFile = $this->expandTmpPath($originDirectory).'/index.html';
44 44
 
45 45
         $messages = array();
46 46
         $result = $this->prince->convert_file_to_file($originFile, $filePath, $messages);
Please login to merge, or discard this patch.
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.