@@ -1,6 +1,6 @@ discard block  | 
                                                    ||
| 1 | 1 | <?php  | 
                                                        
| 2 | 2 | |
| 3 | -declare(strict_types=1);  | 
                                                        |
| 3 | +declare(strict_types = 1);  | 
                                                        |
| 4 | 4 | |
| 5 | 5 | namespace Doctrine\Tests\ORM\Query;  | 
                                                        
| 6 | 6 | |
@@ -36,7 +36,7 @@ discard block  | 
                                                    ||
| 36 | 36 | |
| 37 | 37 | self::assertEquals($sqlToBeConfirmed, $sqlGenerated);  | 
                                                        
| 38 | 38 |          } catch (\Exception $e) { | 
                                                        
| 39 | - $this->fail($e->getMessage() . ' at "' . $e->getFile() . '" on line ' . $e->getLine());  | 
                                                        |
| 39 | + $this->fail($e->getMessage().' at "'.$e->getFile().'" on line '.$e->getLine());  | 
                                                        |
| 40 | 40 | }  | 
                                                        
| 41 | 41 | }  | 
                                                        
| 42 | 42 | |
@@ -76,9 +76,9 @@ discard block  | 
                                                    ||
| 76 | 76 |      { | 
                                                        
| 77 | 77 | $rangeVariableDecl = $identificationVariableDecl->rangeVariableDeclaration;  | 
                                                        
| 78 | 78 | $joinAssocPathExpression = new Query\AST\JoinAssociationPathExpression($rangeVariableDecl->aliasIdentificationVariable, 'address');  | 
                                                        
| 79 | - $joinAssocDeclaration = new Query\AST\JoinAssociationDeclaration($joinAssocPathExpression, $rangeVariableDecl->aliasIdentificationVariable . 'a', null);  | 
                                                        |
| 79 | + $joinAssocDeclaration = new Query\AST\JoinAssociationDeclaration($joinAssocPathExpression, $rangeVariableDecl->aliasIdentificationVariable.'a', null);  | 
                                                        |
| 80 | 80 | $join = new Query\AST\Join(Query\AST\Join::JOIN_TYPE_LEFT, $joinAssocDeclaration);  | 
                                                        
| 81 | - $selectExpression = new Query\AST\SelectExpression($rangeVariableDecl->aliasIdentificationVariable . 'a', null, false);  | 
                                                        |
| 81 | + $selectExpression = new Query\AST\SelectExpression($rangeVariableDecl->aliasIdentificationVariable.'a', null, false);  | 
                                                        |
| 82 | 82 | |
| 83 | 83 | $identificationVariableDecl->joins[] = $join;  | 
                                                        
| 84 | 84 | $selectStatement->selectClause->selectExpressions[] = $selectExpression;  | 
                                                        
@@ -88,7 +88,7 @@ discard block  | 
                                                    ||
| 88 | 88 | $addressMetadata = $entityManager->getClassMetadata(CmsAddress::class);  | 
                                                        
| 89 | 89 | |
| 90 | 90 | $this->setQueryComponent(  | 
                                                        
| 91 | - $rangeVariableDecl->aliasIdentificationVariable . 'a',  | 
                                                        |
| 91 | + $rangeVariableDecl->aliasIdentificationVariable.'a',  | 
                                                        |
| 92 | 92 | [  | 
                                                        
| 93 | 93 | 'metadata' => $addressMetadata,  | 
                                                        
| 94 | 94 | 'parent' => $rangeVariableDecl->aliasIdentificationVariable,  | 
                                                        
@@ -1,6 +1,6 @@ discard block  | 
                                                    ||
| 1 | 1 | <?php  | 
                                                        
| 2 | 2 | |
| 3 | -declare(strict_types=1);  | 
                                                        |
| 3 | +declare(strict_types = 1);  | 
                                                        |
| 4 | 4 | |
| 5 | 5 | namespace Doctrine\Tests\ORM\Query;  | 
                                                        
| 6 | 6 | |
@@ -67,7 +67,7 @@ discard block  | 
                                                    ||
| 67 | 67 | |
| 68 | 68 | self::assertEquals($sqlToBeConfirmed, $sqlGenerated);  | 
                                                        
| 69 | 69 |          } catch (\Exception $e) { | 
                                                        
| 70 | - $this->fail($e->getMessage() . "\n" . $e->getTraceAsString());  | 
                                                        |
| 70 | + $this->fail($e->getMessage()."\n".$e->getTraceAsString());  | 
                                                        |
| 71 | 71 | }  | 
                                                        
| 72 | 72 | }  | 
                                                        
| 73 | 73 | |
@@ -1622,7 +1622,7 @@ discard block  | 
                                                    ||
| 1622 | 1622 | public function testAliasDoesNotExceedPlatformDefinedLength() : void  | 
                                                        
| 1623 | 1623 |      { | 
                                                        
| 1624 | 1624 | $this->assertSqlGeneration(  | 
                                                        
| 1625 | - 'SELECT m FROM ' . __NAMESPACE__ . '\\DDC1384Model m',  | 
                                                        |
| 1625 | + 'SELECT m FROM '.__NAMESPACE__.'\\DDC1384Model m',  | 
                                                        |
| 1626 | 1626 | 'SELECT t0."aVeryLongIdentifierThatShouldBeShortenedByTheSQLWalker_fooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo" AS c0 FROM "DDC1384Model" t0'  | 
                                                        
| 1627 | 1627 | );  | 
                                                        
| 1628 | 1628 | }  | 
                                                        
@@ -1655,12 +1655,12 @@ discard block  | 
                                                    ||
| 1655 | 1655 | public function testSelectWithArithmeticExpressionBeforeField() : void  | 
                                                        
| 1656 | 1656 |      { | 
                                                        
| 1657 | 1657 | $this->assertSqlGeneration(  | 
                                                        
| 1658 | - 'SELECT - e.value AS value, e.id FROM ' . __NAMESPACE__ . '\DDC1474Entity e',  | 
                                                        |
| 1658 | + 'SELECT - e.value AS value, e.id FROM '.__NAMESPACE__.'\DDC1474Entity e',  | 
                                                        |
| 1659 | 1659 | 'SELECT -t0."value" AS c0, t0."id" AS c1 FROM "DDC1474Entity" t0'  | 
                                                        
| 1660 | 1660 | );  | 
                                                        
| 1661 | 1661 | |
| 1662 | 1662 | $this->assertSqlGeneration(  | 
                                                        
| 1663 | - 'SELECT e.id, + e.value AS value FROM ' . __NAMESPACE__ . '\DDC1474Entity e',  | 
                                                        |
| 1663 | + 'SELECT e.id, + e.value AS value FROM '.__NAMESPACE__.'\DDC1474Entity e',  | 
                                                        |
| 1664 | 1664 | 'SELECT t0."id" AS c0, +t0."value" AS c1 FROM "DDC1474Entity" t0'  | 
                                                        
| 1665 | 1665 | );  | 
                                                        
| 1666 | 1666 | }  | 
                                                        
@@ -2337,8 +2337,8 @@ discard block  | 
                                                    ||
| 2337 | 2337 | public function testHavingRegressionUsingVariableWithMathOperatorsExpression($operator) : void  | 
                                                        
| 2338 | 2338 |      { | 
                                                        
| 2339 | 2339 | $this->assertSqlGeneration(  | 
                                                        
| 2340 | - 'SELECT COUNT(u.name) AS countName FROM Doctrine\Tests\Models\CMS\CmsUser u HAVING 1 ' . $operator . ' countName > 0',  | 
                                                        |
| 2341 | - 'SELECT COUNT(t0."name") AS c0 FROM "cms_users" t0 HAVING 1 ' . $operator . ' c0 > 0'  | 
                                                        |
| 2340 | + 'SELECT COUNT(u.name) AS countName FROM Doctrine\Tests\Models\CMS\CmsUser u HAVING 1 '.$operator.' countName > 0',  | 
                                                        |
| 2341 | + 'SELECT COUNT(t0."name") AS c0 FROM "cms_users" t0 HAVING 1 '.$operator.' c0 > 0'  | 
                                                        |
| 2342 | 2342 | );  | 
                                                        
| 2343 | 2343 | }  | 
                                                        
| 2344 | 2344 | |
@@ -2357,7 +2357,7 @@ discard block  | 
                                                    ||
| 2357 | 2357 | |
| 2358 | 2358 | public function getSql(SqlWalker $sqlWalker)  | 
                                                        
| 2359 | 2359 |      { | 
                                                        
| 2360 | -        return 'ABS(' . $sqlWalker->walkSimpleArithmeticExpression($this->simpleArithmeticExpression) . ')'; | 
                                                        |
| 2360 | +        return 'ABS('.$sqlWalker->walkSimpleArithmeticExpression($this->simpleArithmeticExpression).')'; | 
                                                        |
| 2361 | 2361 | }  | 
                                                        
| 2362 | 2362 | |
| 2363 | 2363 | public function parse(Parser $parser)  | 
                                                        
@@ -1,6 +1,6 @@  | 
                                                    ||
| 1 | 1 | <?php  | 
                                                        
| 2 | 2 | |
| 3 | -declare(strict_types=1);  | 
                                                        |
| 3 | +declare(strict_types = 1);  | 
                                                        |
| 4 | 4 | |
| 5 | 5 | namespace Doctrine\Tests\ORM\Event;  | 
                                                        
| 6 | 6 | |