@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | |
22 | 22 | $this->assertContains('FieldRuleSet created successfully.', Artisan::output()); |
23 | 23 | |
24 | - $shouldOutputFilePath = $this->app['path'] . '/Rules/FieldRuleSets/EmailRuleSet.php'; |
|
24 | + $shouldOutputFilePath = $this->app['path'].'/Rules/FieldRuleSets/EmailRuleSet.php'; |
|
25 | 25 | |
26 | 26 | $this->assertTrue(File::exists($shouldOutputFilePath), 'File not found in default app/Rules/FieldRuleSets folder'); |
27 | 27 | |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | |
47 | 47 | $this->assertContains('FieldRuleSet created successfully.', Artisan::output()); |
48 | 48 | |
49 | - $shouldOutputFilePath = $this->app['path'] . '/MyFieldRuleSets/EmailRuleSet.php'; |
|
49 | + $shouldOutputFilePath = $this->app['path'].'/MyFieldRuleSets/EmailRuleSet.php'; |
|
50 | 50 | |
51 | 51 | $this->assertTrue(File::exists($shouldOutputFilePath), 'File not found in custom app/MyFieldRuleSets folder'); |
52 | 52 |
@@ -25,5 +25,5 @@ |
||
25 | 25 | */ |
26 | 26 | protected $type = 'FieldRuleSet'; |
27 | 27 | |
28 | - protected $stub = __DIR__ . '/../../../stubs/DummyFieldRuleSet.stub'; |
|
28 | + protected $stub = __DIR__.'/../../../stubs/DummyFieldRuleSet.stub'; |
|
29 | 29 | } |