Failed Conditions
Push — develop ( 856053...a7d1bd )
by Guilherme
61:28
created
lib/Doctrine/ORM/Query/AST/DeleteStatement.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Doctrine\ORM\Query\AST;
6 6
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Query/AST/CoalesceExpression.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Doctrine\ORM\Query\AST;
6 6
 
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
      */
28 28
     public function __construct(array $scalarExpressions)
29 29
     {
30
-        $this->scalarExpressions  = $scalarExpressions;
30
+        $this->scalarExpressions = $scalarExpressions;
31 31
     }
32 32
 
33 33
     /**
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Query/AST/Functions/BitAndFunction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Doctrine\ORM\Query\AST\Functions;
6 6
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Query/AST/Functions/ConcatFunction.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Doctrine\ORM\Query\AST\Functions;
6 6
 
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
             $args[] = $sqlWalker->walkStringPrimary($expression);
40 40
         }
41 41
 
42
-        return call_user_func_array([$platform,'getConcatExpression'], $args);
42
+        return call_user_func_array([$platform, 'getConcatExpression'], $args);
43 43
     }
44 44
 
45 45
     /**
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Query/AST/Functions/IdentityFunction.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Doctrine\ORM\Query\AST\Functions;
6 6
 
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
         $tableAlias       = $sqlWalker->getSQLTableAlias($tableName, $dqlAlias);
74 74
         $quotedColumnName = $platform->quoteIdentifier($joinColumn->getColumnName());
75 75
 
76
-        return $tableAlias . '.' . $quotedColumnName;
76
+        return $tableAlias.'.'.$quotedColumnName;
77 77
     }
78 78
 
79 79
     /**
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Query/AST/Functions/AbsFunction.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Doctrine\ORM\Query\AST\Functions;
6 6
 
@@ -30,9 +30,9 @@  discard block
 block discarded – undo
30 30
      */
31 31
     public function getSql(\Doctrine\ORM\Query\SqlWalker $sqlWalker)
32 32
     {
33
-        return 'ABS(' . $sqlWalker->walkSimpleArithmeticExpression(
33
+        return 'ABS('.$sqlWalker->walkSimpleArithmeticExpression(
34 34
             $this->simpleArithmeticExpression
35
-        ) . ')';
35
+        ).')';
36 36
     }
37 37
 
38 38
     /**
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Query/AST/ASTException.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Doctrine\ORM\Query\AST;
6 6
 
@@ -18,6 +18,6 @@  discard block
 block discarded – undo
18 18
      */
19 19
     public static function noDispatchForNode($node)
20 20
     {
21
-        return new self("Double-dispatch for node " . get_class($node) . " is not supported.");
21
+        return new self("Double-dispatch for node ".get_class($node)." is not supported.");
22 22
     }
23 23
 }
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Configuration/MetadataConfiguration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 
4
-declare(strict_types=1);
4
+declare(strict_types = 1);
5 5
 
6 6
 namespace Doctrine\ORM\Configuration;
7 7
 
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
      */
121 121
     public function getNamingStrategy() : NamingStrategy
122 122
     {
123
-        if (! $this->namingStrategy) {
123
+        if ( ! $this->namingStrategy) {
124 124
             $this->namingStrategy = new DefaultNamingStrategy();
125 125
         }
126 126
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Configuration/ProxyConfiguration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 
4
-declare(strict_types=1);
4
+declare(strict_types = 1);
5 5
 
6 6
 namespace Doctrine\ORM\Configuration;
7 7
 
Please login to merge, or discard this patch.