Completed
Push — master ( 0941d8...028b7a )
by Matt
16s queued 13s
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
                         'year' => $dp['year']
Please login to merge, or discard this patch.