Passed
Push — master ( 5ae5fc...1c3f43 )
by Giuliano
18:52
created
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.
tests/Unit/Entities/Theme/ThemeURLTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
         $public = $this->getPublishable();
39 39
         $domain = $this->registerDomain();
40 40
 
41
-        $file =  '/' . $file ?? '';
41
+        $file = '/'.$file ?? '';
42 42
 
43 43
         return sprintf("%s/%s/%s%s", $domain, $public, $theme, $file);
44 44
     }
Please login to merge, or discard this patch.
tests/Unit/Entities/Vendor/VendorTestCase.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,8 +16,8 @@
 block discarded – undo
16 16
         $dist  = 'maestriam';
17 17
         $name  = 'samurai';
18 18
         
19
-        $nspace  = ucfirst($dist) ."/". ucfirst($name);
20
-        $package = $dist ."/". $name;
19
+        $nspace  = ucfirst($dist)."/".ucfirst($name);
20
+        $package = $dist."/".$name;
21 21
 
22 22
         $vendor = new Vendor($package);
23 23
         
Please login to merge, or discard this patch.