Failed Conditions
Pull Request — 2.6 (#7197)
by JHONATAN
11:05
created
tests/Doctrine/Tests/ORM/Query/ParserTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -30,9 +30,9 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
         
Please login to merge, or discard this patch.