Test Failed
Branch feature/refactoring-samurai (e4c420)
by Giuliano
05:24
created
src/Foundation/DirectiveParser.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -37,9 +37,9 @@
 block discarded – undo
37 37
     public function parse(string $file) : DirectiveParser
38 38
     {
39 39
         $this->setFile($file)
40
-             ->setRelative()
41
-             ->setNameAndType()
42
-             ->setSentence();
40
+                ->setRelative()
41
+                ->setNameAndType()
42
+                ->setSentence();
43 43
             
44 44
         return $this;
45 45
     }
Please login to merge, or discard this patch.
src/Foundation/FilenameParser.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
         $folder = $this->parseFolder($file);
41 41
         
42 42
         if (! $name) {
43
-           return null;
43
+            return null;
44 44
         }
45 45
         
46 46
         return (object) ['name' => $name, 'folder' => $folder];
Please login to merge, or discard this patch.
src/Foundation/EnvHandler.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -16,11 +16,11 @@
 block discarded – undo
16 16
     }
17 17
     
18 18
     /**
19
-      * Cria um novo arquivo de configurações do ambiente do projeto
20
-      *
21
-      * @param string $custom
22
-      * @return integer
23
-      */
19
+     * Cria um novo arquivo de configurações do ambiente do projeto
20
+     *
21
+     * @param string $custom
22
+     * @return integer
23
+     */
24 24
     public function initEnv() : int
25 25
     {        
26 26
         return touch($this->file());
Please login to merge, or discard this patch.
src/Entities/Structure.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -37,12 +37,12 @@
 block discarded – undo
37 37
         return $this->dir()->public($this->dist, $this->theme);        
38 38
     }
39 39
 
40
-     /**
41
-     * Retorna o caminho do diretório onde são armazenados
42
-     * os arquivos de assets (js/css/imgs)
43
-     *
44
-     * @return string
45
-     */
40
+        /**
41
+         * Retorna o caminho do diretório onde são armazenados
42
+         * os arquivos de assets (js/css/imgs)
43
+         *
44
+         * @return string
45
+         */
46 46
     public function assets() : string 
47 47
     {        
48 48
         return $this->dir()->assets($this->dist, $this->theme);
Please login to merge, or discard this patch.
src/Entities/Theme.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -284,9 +284,9 @@
 block discarded – undo
284 284
     private function init(string $package) : Theme
285 285
     {
286 286
         $this->setVendor($package)
287
-             ->setDirectiveFinder()
288
-             ->setComposer()
289
-             ->setStructure();
287
+                ->setDirectiveFinder()
288
+                ->setComposer()
289
+                ->setStructure();
290 290
 
291 291
         if ($this->exists()) {
292 292
             return $this->import();
Please login to merge, or discard this patch.
src/Entities/Directive.php 1 patch
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -49,20 +49,20 @@  discard block
 block discarded – undo
49 49
      */
50 50
     protected string $path;
51 51
 
52
-   /**
53
-    * Apelido pelo qual é chamado dentro do projeto,
54
-    * como camel-case
55
-    * 
56
-    * @var string
57
-    */
52
+    /**
53
+     * Apelido pelo qual é chamado dentro do projeto,
54
+     * como camel-case
55
+     * 
56
+     * @var string
57
+     */
58 58
     protected string $camelAlias;
59 59
 
60 60
     /**
61
-    * Apelido pelo qual é chamado dentro do projeto,
62
-    * como camel-case
63
-    * 
64
-    * @var string
65
-    */
61
+     * Apelido pelo qual é chamado dentro do projeto,
62
+     * como camel-case
63
+     * 
64
+     * @var string
65
+     */
66 66
     protected string $kebabAlias;
67 67
 
68 68
     /**
@@ -201,13 +201,13 @@  discard block
 block discarded – undo
201 201
     }
202 202
 
203 203
         /**
204
-     * Carrega a diretiva (include/component) dentro do projeto como kabe-case.  
205
-     * Padrão utilizado no Blade UI.  
206
-     *
207
-     * @param string $file
208
-     * @param string $alias
209
-     * @return Directive
210
-     */
204
+         * Carrega a diretiva (include/component) dentro do projeto como kabe-case.  
205
+         * Padrão utilizado no Blade UI.  
206
+         *
207
+         * @param string $file
208
+         * @param string $alias
209
+         * @return Directive
210
+         */
211 211
     private function loadKebabAlias(string $file, string $alias) : Directive
212 212
     {
213 213
         Blade::component($file, $alias);
Please login to merge, or discard this patch.