Test Failed
Push — master ( 30c99c...b8e71f )
by Travis
02:31
created
tests/MakeFieldRuleSetCommandTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Console/Commands/MakeFieldRuleSet.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,5 +25,5 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.