@@ -61,7 +61,7 @@ |
||
| 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 | |
@@ -166,7 +166,7 @@ |
||
| 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'], |
@@ -206,7 +206,7 @@ |
||
| 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 |