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