Passed
Push — master ( ed297f...604ea4 )
by Giuliano
04:39
created
tests/Feature/Console/MakeComponentCommandTest.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -48,11 +48,11 @@
 block discarded – undo
48 48
         $msg = sprintf($error, $name, $theme);
49 49
 
50 50
         $this->artisan($cmd)
51
-             ->assertExitCode(0);
51
+                ->assertExitCode(0);
52 52
 
53 53
         $this->artisan($cmd)
54
-             ->expectsOutput($msg)
55
-             ->assertExitCode(DirectiveExistsException::CODE);
54
+                ->expectsOutput($msg)
55
+                ->assertExitCode(DirectiveExistsException::CODE);
56 56
 
57 57
     }
58 58
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 use Maestriam\Samurai\Tests\TestCase;
9 9
 
10 10
 class MakeComponentCommandTest extends TestCase
11
-{    
11
+{
12 12
     public function testMakeValidComponent()
13 13
     {
14 14
         $theme = 'bands/sepultura';
Please login to merge, or discard this patch.
tests/Feature/Console/PublishThemeCommandTest.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 use Maestriam\Samurai\Tests\TestCase;
7 7
 
8 8
 class PublishThemeCommandTest extends TestCase
9
-{    
9
+{
10 10
     public function testPublishValidTheme()
11 11
     {
12 12
         $theme = 'bands/sodom';
Please login to merge, or discard this patch.
tests/Feature/Console/UseThemeCommandTest.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,8 +15,8 @@
 block discarded – undo
15 15
         $message = $this->getSuccessMessage($theme->package());
16 16
 
17 17
         $this->artisan($cmd)
18
-             ->assertExitCode(0)
19
-             ->expectsOutput($message);
18
+                ->assertExitCode(0)
19
+                ->expectsOutput($message);
20 20
 
21 21
         $current = Samurai::base()->current();
22 22
         
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 use Maestriam\Samurai\Tests\TestCase;
7 7
 
8 8
 class UseThemeCommandTest extends TestCase
9
-{    
9
+{
10 10
     public function testMakeValidTheme()
11 11
     {
12 12
         $theme = $this->theme('bands/saxon')->findOrCreate();
Please login to merge, or discard this patch.
tests/Unit/Entities/Composer/LoadComposerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 
16 16
         $theme->make();
17 17
 
18
-        $file = $theme->paths()->root() . '/composer.json';
18
+        $file = $theme->paths()->root().'/composer.json';
19 19
         
20 20
         $composer = new Composer($theme);
21 21
 
Please login to merge, or discard this patch.
tests/Unit/Entities/Composer/ComposerTestCase.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     }
19 19
 
20 20
     public function testInitComposerWithDescription()
21
-    {        
21
+    {
22 22
         $description = 'my new theme';
23 23
 
24 24
         $theme = new Theme('bands/vixen');
Please login to merge, or discard this patch.
tests/Unit/Entities/Base/CurrentThemeTest.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
      * @return void
15 15
      */
16 16
     public function testCurrentTheme()
17
-    {        
17
+    {
18 18
         $theme1 = new Theme('bands/dokken');
19 19
         $theme1->make()->use();       
20 20
         
Please login to merge, or discard this patch.
tests/Unit/Entities/Base/AnyThemeTest.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 class AnyThemeTest extends TestCase
9 9
 {
10 10
     public function testFindAnyThemeWithinFullDir()
11
-    {   
11
+    {
12 12
         $this->theme('bands/hardline')->findOrCreate();
13 13
 
14 14
         $base = new Base();
Please login to merge, or discard this patch.
tests/Unit/Entities/Base/EmptyBaseTest.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     }
20 20
 
21 21
     public function testEmptyBase()
22
-    {   
22
+    {
23 23
         $base = new Base();
24 24
 
25 25
         $ret = $base->empty();
Please login to merge, or discard this patch.
tests/Unit/Entities/Author/AuthorTestCase.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
      * @return void
19 19
      */
20 20
     public function testAuthorProperties()
21
-    {        
21
+    {
22 22
         $signture = 'Giuliano Sampaio <[email protected]>';
23 23
         
24 24
         $author = new Author();
Please login to merge, or discard this patch.