| @@ -30,9 +30,9 @@ discard block | ||
| 30 | 30 | */ | 
| 31 | 31 | public function testAbstractSchemaNameSupportsClassnamesWithLeadingBackslash() | 
| 32 | 32 |      { | 
| 33 | -        $parser = $this->createParser('\\' . CmsUser::class); | |
| 33 | +        $parser = $this->createParser('\\'.CmsUser::class); | |
| 34 | 34 | |
| 35 | -        $this->assertEquals('\\' . CmsUser::class, $parser->AbstractSchemaName()); | |
| 35 | +        $this->assertEquals('\\'.CmsUser::class, $parser->AbstractSchemaName()); | |
| 36 | 36 | } | 
| 37 | 37 | |
| 38 | 38 | /** | 
| @@ -165,7 +165,7 @@ discard block | ||
| 165 | 165 |      { | 
| 166 | 166 | $manager = $this->_getTestEntityManager(); | 
| 167 | 167 | |
| 168 | -        $manager->getConfiguration()->addCustomBooleanFunction('SomeFunction', function () { | |
| 168 | +        $manager->getConfiguration()->addCustomBooleanFunction('SomeFunction', function() { | |
| 169 | 169 |              return new ConcatFunction('SomeFunction'); | 
| 170 | 170 | }); | 
| 171 | 171 | |