@@ -48,7 +48,7 @@ discard block |
||
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 |
||
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 | } |
@@ -118,7 +118,7 @@ |
||
118 | 118 | } |
119 | 119 | |
120 | 120 | if (!($service instanceof AuthenticationServiceInterface)) { |
121 | - throw new Exception('Authentication service does not implement ' . AuthenticationServiceInterface::class); |
|
121 | + throw new Exception('Authentication service does not implement '.AuthenticationServiceInterface::class); |
|
122 | 122 | } |
123 | 123 | |
124 | 124 | return $service; |