Passed
Branch master (b1f503)
by Florian
07:25
created
Category
src/Identifier/Resolver/OrmResolver.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
         $table = $this->getTableLocator()->get($this->getConfig('userModel'));
49 49
 
50 50
         $query = $table->query();
51
-        $finders = (array)$this->getConfig('finder');
51
+        $finders = (array) $this->getConfig('finder');
52 52
         foreach ($finders as $finder => $options) {
53 53
             if (is_string($options)) {
54 54
                 $query->find($options);
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
         foreach ($conditions as $field => $value) {
62 62
             $field = $table->aliasField($field);
63 63
             if (is_array($value)) {
64
-                $field = $field . ' IN';
64
+                $field = $field.' IN';
65 65
             }
66 66
             $where[$field] = $value;
67 67
         }
Please login to merge, or discard this patch.