Passed
Push — master ( 7ac6c1...0d1240 )
by Matt
04:32
created
src/Repository/WanderRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
     {
62 62
         $qb = $this->createQueryBuilder($entityAlias);
63 63
         $qb->select($entityAlias, 'i')
64
-            ->leftJoin($entityAlias.'.images', 'i');
64
+            ->leftJoin($entityAlias . '.images', 'i');
65 65
         return $qb;
66 66
     }
67 67
 
Please login to merge, or discard this patch.
src/Controller/StatsController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -166,7 +166,7 @@
 block discarded – undo
166 166
                 'data' => array_map($series['extractFunction'], $sourceStats),
167 167
             ];
168 168
             if (array_key_exists('rating', $series)) {
169
-                $data['urls'][] = array_map(function ($dp) use ($series): string {
169
+                $data['urls'][] = array_map(function($dp) use ($series): string {
170 170
                     $params = [
171 171
                         'rating' => $series['rating'],
172 172
                         'periodStartDate' => $dp['periodStartDate'],
Please login to merge, or discard this patch.
src/Form/ImageFilterData.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -206,7 +206,7 @@
 block discarded – undo
206 206
                 $result = null;
207 207
             }
208 208
         }
209
-        catch(Exception $e) {
209
+        catch (Exception $e) {
210 210
             // I don't care what happened personally; we'll just not bother
211 211
             // overriding our existing dates. However, whatever called us
212 212
             // might want to log this, as someone may be probing the app for
Please login to merge, or discard this patch.