@@ -106,7 +106,7 @@ |
||
106 | 106 | * @see AbstractWhere |
107 | 107 | * @param string|mixed $identifier Column or expression. |
108 | 108 | * @param mixed $variousA Operator or value. |
109 | - * @param mixed $variousB Value, if operator specified. |
|
109 | + * @param Parameter $variousB Value, if operator specified. |
|
110 | 110 | * @param mixed $variousC Required only in between statements. |
111 | 111 | * @return $this |
112 | 112 | * @throws BuilderException |
@@ -344,7 +344,7 @@ |
||
344 | 344 | */ |
345 | 345 | private function whereWrapper() |
346 | 346 | { |
347 | - return function ($parameter) { |
|
347 | + return function($parameter) { |
|
348 | 348 | if ($parameter instanceof FragmentInterface) { |
349 | 349 | //We are only not creating bindings for plan fragments |
350 | 350 | if (!$parameter instanceof ParameterInterface && !$parameter instanceof QueryBuilder) { |
@@ -318,7 +318,7 @@ discard block |
||
318 | 318 | */ |
319 | 319 | private function onWrapper() |
320 | 320 | { |
321 | - return function ($parameter) { |
|
321 | + return function($parameter) { |
|
322 | 322 | if ($parameter instanceof FragmentInterface) { |
323 | 323 | return $parameter; |
324 | 324 | } |
@@ -334,7 +334,7 @@ discard block |
||
334 | 334 | */ |
335 | 335 | private function whereWrapper() |
336 | 336 | { |
337 | - return function ($parameter) { |
|
337 | + return function($parameter) { |
|
338 | 338 | if ($parameter instanceof FragmentInterface) { |
339 | 339 | //We are only not creating bindings for plan fragments |
340 | 340 | if (!$parameter instanceof ParameterInterface && !$parameter instanceof QueryBuilder) { |
@@ -419,7 +419,7 @@ |
||
419 | 419 | */ |
420 | 420 | private function havingWrapper() |
421 | 421 | { |
422 | - return function ($parameter) { |
|
422 | + return function($parameter) { |
|
423 | 423 | if ($parameter instanceof FragmentInterface) { |
424 | 424 | //We are only not creating bindings for plan fragments |
425 | 425 | if (!$parameter instanceof ParameterInterface && !$parameter instanceof QueryBuilder) { |
@@ -429,7 +429,7 @@ |
||
429 | 429 | $class, |
430 | 430 | array $parameters, |
431 | 431 | $context = null, |
432 | - \ReflectionClass &$reflection = null |
|
432 | + \ReflectionClass & $reflection = null |
|
433 | 433 | ) { |
434 | 434 | try { |
435 | 435 | $reflection = new \ReflectionClass($class); |