Completed
Branch develop (f7dc53)
by Anton
05:49
created
source/Spiral/Database/Builders/Prototypes/AbstractWhere.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -344,7 +344,7 @@
 block discarded – undo
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) {
Please login to merge, or discard this patch.
source/Spiral/Database/Builders/Traits/JoinsTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -318,7 +318,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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) {
Please login to merge, or discard this patch.
source/Spiral/Database/Builders/Prototypes/AbstractSelect.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -419,7 +419,7 @@
 block discarded – undo
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) {
Please login to merge, or discard this patch.
source/Spiral/Core/Container.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -429,7 +429,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.