@@ -12,14 +12,14 @@ discard block |
||
| 12 | 12 | public function setUp() |
| 13 | 13 | { |
| 14 | 14 | parent::setUp(); |
| 15 | - $path = __DIR__ . '/stubs/module.json'; |
|
| 15 | + $path = __DIR__.'/stubs/module.json'; |
|
| 16 | 16 | $this->json = new Json($path, $this->app['files']); |
| 17 | 17 | } |
| 18 | 18 | |
| 19 | 19 | /** @test */ |
| 20 | 20 | public function it_gets_the_file_path() |
| 21 | 21 | { |
| 22 | - $path = __DIR__ . '/stubs/module.json'; |
|
| 22 | + $path = __DIR__.'/stubs/module.json'; |
|
| 23 | 23 | |
| 24 | 24 | $this->assertEquals($path, $this->json->getPath()); |
| 25 | 25 | } |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | /** @test */ |
| 52 | 52 | public function it_makes_json_class() |
| 53 | 53 | { |
| 54 | - $path = __DIR__ . '/stubs/module.json'; |
|
| 54 | + $path = __DIR__.'/stubs/module.json'; |
|
| 55 | 55 | $json = Json::make($path, $this->app['files']); |
| 56 | 56 | |
| 57 | 57 | $this->assertInstanceOf(Json::class, $json); |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | /** @test */ |
| 61 | 61 | public function it_sets_a_path() |
| 62 | 62 | { |
| 63 | - $path = __DIR__ . '/stubs/module.json'; |
|
| 63 | + $path = __DIR__.'/stubs/module.json'; |
|
| 64 | 64 | $this->assertEquals($path, $this->json->getPath()); |
| 65 | 65 | |
| 66 | 66 | $this->json->setPath('some/path.json'); |
@@ -126,6 +126,6 @@ discard block |
||
| 126 | 126 | ] |
| 127 | 127 | } |
| 128 | 128 | '; |
| 129 | - $this->assertEquals($expected, (string)$this->json); |
|
| 129 | + $this->assertEquals($expected, (string) $this->json); |
|
| 130 | 130 | } |
| 131 | 131 | } |