@@ -424,7 +424,7 @@ |
||
424 | 424 | |
425 | 425 | if (!$injector instanceof InjectorInterface) { |
426 | 426 | throw new InjectionException( |
427 | - "Class '" . get_class($injector) . "' must be an instance of InjectorInterface for '{$reflection->getName()}'" |
|
427 | + "Class '".get_class($injector)."' must be an instance of InjectorInterface for '{$reflection->getName()}'" |
|
428 | 428 | ); |
429 | 429 | } |
430 | 430 |
@@ -426,7 +426,7 @@ |
||
426 | 426 | ): AccessorInterface { |
427 | 427 | if (!is_string($accessor) || !class_exists($accessor)) { |
428 | 428 | throw new EntityException( |
429 | - "Unable to create accessor for field {$name} in " . static::class |
|
429 | + "Unable to create accessor for field {$name} in ".static::class |
|
430 | 430 | ); |
431 | 431 | } |
432 | 432 |
@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | $args[0] = $this->prepare($args[0]); |
130 | 130 | |
131 | 131 | //Routing where |
132 | - call_user_func_array([$this->query, 'and' . ucfirst($this->target)], $args); |
|
132 | + call_user_func_array([$this->query, 'and'.ucfirst($this->target)], $args); |
|
133 | 133 | |
134 | 134 | return $this; |
135 | 135 | } |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | $args[0] = $this->prepare($args[0]); |
159 | 159 | |
160 | 160 | //Routing where |
161 | - call_user_func_array([$this->query, 'or' . ucfirst($this->target)], $args); |
|
161 | + call_user_func_array([$this->query, 'or'.ucfirst($this->target)], $args); |
|
162 | 162 | |
163 | 163 | return $this; |
164 | 164 | } |