Test Setup Failed
Branch master (ed297f)
by Giuliano
10:07
created
src/Models/Directive.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -50,11 +50,11 @@  discard block
 block discarded – undo
50 50
      */
51 51
     private $path = '';
52 52
 
53
-   /**
54
-    * Apelido pelo qual é chamado dentro do projeto
55
-    *
56
-    * @var string
57
-    */
53
+    /**
54
+     * Apelido pelo qual é chamado dentro do projeto
55
+     *
56
+     * @var string
57
+     */
58 58
     private $alias = '';
59 59
 
60 60
     /**
@@ -68,13 +68,13 @@  discard block
 block discarded – undo
68 68
     public function __construct(string $sentence, string $type, Theme $theme)
69 69
     {
70 70
         $this->setSentence($sentence)
71
-             ->setTheme($theme)
72
-             ->setType($type)
73
-             ->setName($sentence)
74
-             ->setAlias($sentence)
75
-             ->setFilename()
76
-             ->setFolder($sentence)
77
-             ->setPath($sentence);
71
+                ->setTheme($theme)
72
+                ->setType($type)
73
+                ->setName($sentence)
74
+                ->setAlias($sentence)
75
+                ->setFilename()
76
+                ->setFolder($sentence)
77
+                ->setPath($sentence);
78 78
     }
79 79
 
80 80
     /**
Please login to merge, or discard this patch.
src/Models/Wizard.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -70,8 +70,8 @@
 block discarded – undo
70 70
     public function confirm($vendor, $author, $desc) : stdClass
71 71
     {
72 72
         $this->setVendor($vendor)
73
-             ->setAuthor($author)
74
-             ->setDescription($desc);
73
+                ->setAuthor($author)
74
+                ->setDescription($desc);
75 75
 
76 76
         $preview = $this->getComposer();
77 77
         $ask     = 'Confirm? '. PHP_EOL . $preview;
Please login to merge, or discard this patch.
src/Traits/Theme/Accessors.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -26,9 +26,9 @@  discard block
 block discarded – undo
26 26
         $vendor = $this->parser()->vendor($this->vendor);
27 27
 
28 28
         $this->setName($vendor->name)
29
-             ->setDistributor($vendor->distributor)
30
-             ->setNamespace($vendor->name)
31
-             ->setPath($vendor->distributor, $vendor->name);
29
+                ->setDistributor($vendor->distributor)
30
+                ->setNamespace($vendor->name)
31
+                ->setPath($vendor->distributor, $vendor->name);
32 32
     }
33 33
 
34 34
     /**
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
         return $this;
125 125
     }
126 126
 
127
-   /**
127
+    /**
128 128
      * Define o caminho-base do tema
129 129
      *
130 130
      * @param string $name
Please login to merge, or discard this patch.
src/Console/InitThemeCommand.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -60,9 +60,9 @@
 block discarded – undo
60 60
             }
61 61
 
62 62
             $this->theme($theme)
63
-                 ->author($author)
64
-                 ->description($desc)
65
-                 ->build();
63
+                    ->author($author)
64
+                    ->description($desc)
65
+                    ->build();
66 66
 
67 67
             $this->base()->clearCache();
68 68
 
Please login to merge, or discard this patch.
src/Console/MakeComponentCommand.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,8 +50,8 @@
 block discarded – undo
50 50
             $args = $this->getArguments();
51 51
 
52 52
             $component = $this->theme($args->theme)
53
-                              ->component($args->name)
54
-                              ->create();
53
+                                ->component($args->name)
54
+                                ->create();
55 55
 
56 56
             $this->base()->clearCache();
57 57
 
Please login to merge, or discard this patch.