@@ -96,7 +96,7 @@ |
||
| 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 | |
@@ -88,7 +88,7 @@ |
||
| 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 | |
@@ -58,7 +58,7 @@ discard block |
||
| 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 |
||
| 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 | |