Completed
Push — master ( 9926f2...544988 )
by Julián
02:09
created
tests/ManagerBuilder/CouchDBBuilderTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
 
93 93
         return array_walk(
94 94
             $commands,
95
-            function (Command $command) {
95
+            function(Command $command) {
96 96
                 static::assertEquals(1, preg_match('/^test:(odm:)?/', $command->getName()));
97 97
             }
98 98
         );
Please login to merge, or discard this patch.
tests/ManagerBuilder/RelationalBuilderTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
      */
94 94
     public function testManagerNoAnnotationFile()
95 95
     {
96
-        $this->builder->setOption('annotation_files', __DIR__ . '/fake_file.php');
96
+        $this->builder->setOption('annotation_files', __DIR__.'/fake_file.php');
97 97
 
98 98
         $this->builder->getManager(true, true);
99 99
     }
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
 
209 209
         return array_walk(
210 210
             $commands,
211
-            function (Command $command) {
211
+            function(Command $command) {
212 212
                 static::assertEquals(1, preg_match('/^test:(dbal|orm):/', $command->getName()));
213 213
             }
214 214
         );
Please login to merge, or discard this patch.
tests/ManagerBuilder/MongoDBBuilderTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
 
98 98
         return array_walk(
99 99
             $commands,
100
-            function (Command $command) {
100
+            function(Command $command) {
101 101
                 static::assertEquals(1, preg_match('/^test:odm:/', $command->getName()));
102 102
             }
103 103
         );
Please login to merge, or discard this patch.