Passed
Pull Request — 2.6 (#7803)
by
unknown
07:01
created
lib/Doctrine/ORM/Tools/Pagination/LimitSubqueryWalker.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
                 case $item->expression instanceof SimpleArithmeticExpression:
107 107
                     $expressions = array_filter(
108 108
                         $item->expression->arithmeticTerms,
109
-                        function ($term) { return $term instanceof PathExpression; }
109
+                        function($term) { return $term instanceof PathExpression; }
110 110
                     );
111 111
                     break;
112 112
                 default:
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
             foreach ($expressions as $expression) {
117 117
                 $AST->selectClause->selectExpressions[] = new SelectExpression(
118 118
                     $this->createSelectExpressionItem($expression),
119
-                    '_dctrn_ord' . $this->_aliasCounter++
119
+                    '_dctrn_ord'.$this->_aliasCounter++
120 120
                 );
121 121
             }
122 122
 
Please login to merge, or discard this patch.