Passed
Push — master ( 03962a...fa2218 )
by Nicolaas
04:01
created
src/Model/ObjectsUpdated.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -24,11 +24,11 @@
 block discarded – undo
24 24
             ORDER BY "ClassNameLastEdited" ASC
25 25
         ');
26 26
         foreach ($query as $row) {
27
-            $array[$row['ClassNameLastEdited']] =
28
-                Injector::inst()->get($row['ClassNameLastEdited'])->i18n_singular_name() .
29
-                ' (×' . $row['Count'] . ')';
30
-            if ($myClass && $myClass === $row['ClassNameLastEdited']) {
31
-                return $row['Count'];
27
+            $array[ $row[ 'ClassNameLastEdited' ] ] =
28
+                Injector::inst()->get($row[ 'ClassNameLastEdited' ])->i18n_singular_name() .
29
+                ' (×' . $row[ 'Count' ] . ')';
30
+            if ($myClass && $myClass === $row[ 'ClassNameLastEdited' ]) {
31
+                return $row[ 'Count' ];
32 32
             }
33 33
         }
34 34
         return implode(', ', $array);
Please login to merge, or discard this patch.