Passed
Push — master ( 9298aa...7dc613 )
by Anton
32:45 queued 17:34
created
tests/Command/Generate/GridCommandTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@
 block discarded – undo
96 96
         self::assertFileExists($file);
97 97
         self::assertEquals(
98 98
             md5_file($file),
99
-            md5_file(__DIR__ . DS . '..' . DS . '..' . DS. 'Generator' . DS . 'samples' . DS . 'grid.html')
99
+            md5_file(__DIR__ . DS . '..' . DS . '..' . DS . 'Generator' . DS . 'samples' . DS . 'grid.html')
100 100
         );
101 101
     }
102 102
 
Please login to merge, or discard this patch.
tests/Command/Generate/CrudCommandTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
 
89 89
         self::assertEquals(
90 90
             md5_file($file),
91
-            md5_file(__DIR__ . DS . '..' . DS . '..' . DS. 'Generator' . DS . 'samples' . DS . 'crud.html')
91
+            md5_file(__DIR__ . DS . '..' . DS . '..' . DS . 'Generator' . DS . 'samples' . DS . 'crud.html')
92 92
         );
93 93
     }
94 94
 
Please login to merge, or discard this patch.
tests/Command/Generate/RestCommandTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
         );
59 59
 
60 60
         $this->getFs()->touch(
61
-            $this->modelPath .DS. 'Crud.php'
61
+            $this->modelPath . DS . 'Crud.php'
62 62
         );
63 63
 
64 64
         $this->modulePath = $this->workingPath
@@ -116,13 +116,13 @@  discard block
 block discarded – undo
116 116
         self::assertMatchesRegularExpression('/Running generate:rest command/', $display);
117 117
         self::assertMatchesRegularExpression('/has been successfully created/', $display);
118 118
 
119
-        $file = $this->modulePath .DS. 'controllers' .DS. 'rest.php';
119
+        $file = $this->modulePath . DS . 'controllers' . DS . 'rest.php';
120 120
 
121 121
         self::assertFileExists($file);
122 122
 
123 123
         self::assertEquals(
124 124
             md5_file($file),
125
-            md5_file(__DIR__ . DS . '..' . DS . '..' . DS. 'Generator' . DS . 'samples' . DS . 'rest.html')
125
+            md5_file(__DIR__ . DS . '..' . DS . '..' . DS . 'Generator' . DS . 'samples' . DS . 'rest.html')
126 126
         );
127 127
     }
128 128
 
Please login to merge, or discard this patch.