Passed
Push — master ( ed297f...604ea4 )
by Giuliano
04:39
created
src/Foundation/FilenameParser.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,9 @@
 block discarded – undo
17 17
         $type = $this->parseType($file);
18 18
         $name = $this->parseFullName($file);
19 19
 
20
-        if (! $name || ! $type) return null;
20
+        if (! $name || ! $type) {
21
+            return null;
22
+        }
21 23
 
22 24
         $request = [
23 25
             'name' => $name,
Please login to merge, or discard this patch.
tests/Feature/Console/MakeThemeCommandTest.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 use Maestriam\Samurai\Tests\TestCase;
8 8
 
9 9
 class MakeThemeCommandTest extends TestCase
10
-{    
10
+{
11 11
     public function testMakeValidTheme()
12 12
     {
13 13
         $theme = 'bands/helloween';
Please login to merge, or discard this patch.
tests/Feature/Console/InitThemeCommandTest.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 use Maestriam\Samurai\Tests\TestCase;
8 8
 
9 9
 class InitThemeCommandTest extends TestCase
10
-{       
10
+{
11 11
     /**
12 12
      * Verifica se consegue percorrer por todas as pessoas
13 13
      *
Please login to merge, or discard this patch.
tests/Feature/Console/MakeIncludeCommandTest.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 use Maestriam\Samurai\Tests\TestCase;
10 10
 
11 11
 class MakeIncludeCommandTest extends TestCase
12
-{    
12
+{
13 13
     public function testMakeValidInclude()
14 14
     {
15 15
         $theme = 'bands/slayer';
Please login to merge, or discard this patch.
tests/Feature/Console/RefreshProjectCommandTest.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 use Maestriam\Samurai\Tests\TestCase;
6 6
 
7 7
 class RefreshProjectCommandTest extends TestCase
8
-{    
8
+{
9 9
     public function testMakeValidTheme()
10 10
     {
11 11
         $cmd = 'samurai:refresh';
Please login to merge, or discard this patch.
tests/Feature/Console/MakeComponentCommandTest.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
 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 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 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/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.