Passed
Branch 0.8.x (fca16e)
by Alexander
13:00
created
src/bundles/WebResourceBundle/Autoloader/Autoloader.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
         }
106 106
 
107 107
         if ($config->enabledInComposer) {
108
-           $this->enabledComposerNamespaces();
108
+            $this->enabledComposerNamespaces();
109 109
         }
110 110
 
111 111
         return $this;
Please login to merge, or discard this patch.
src/bundles/WebResourceBundle/Autoloader/Autoload.php 1 patch
Indentation   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -27,32 +27,32 @@
 block discarded – undo
27 27
  */
28 28
 final class Autoload extends AutoloadConfig
29 29
 {
30
-	/**
31
-	 * Map of class names and locations.
32
-	 * 
33
-	 * @var array $classmap
34
-	 */
35
-	public $classmap = [];
30
+    /**
31
+     * Map of class names and locations.
32
+     * 
33
+     * @var array $classmap
34
+     */
35
+    public $classmap = [];
36 36
 	
37
-	/**
38
-	 * If true, then auto-enabled will happen across all namespaces
39
-	 * loaded by Composer, as well as the namespaces configured locally.
40
-	 * 
41
-	 * @var bool $enabledInComposer
42
-	 */
43
-	public $enabledInComposer = true;
37
+    /**
38
+     * If true, then auto-enabled will happen across all namespaces
39
+     * loaded by Composer, as well as the namespaces configured locally.
40
+     * 
41
+     * @var bool $enabledInComposer
42
+     */
43
+    public $enabledInComposer = true;
44 44
 	
45
-	/**
46
-	 * Array of files for autoloading.
47
-	 * 
48
-	 * @var array $files
49
-	 */
50
-	public $files = [];
45
+    /**
46
+     * Array of files for autoloading.
47
+     * 
48
+     * @var array $files
49
+     */
50
+    public $files = [];
51 51
 	
52
-	/**
53
-	 * Array of namespaces for autoloading.
54
-	 * 
55
-	 * @var array $psr4
56
-	 */
57
-	public $psr4 = [];
52
+    /**
53
+     * Array of namespaces for autoloading.
54
+     * 
55
+     * @var array $psr4
56
+     */
57
+    public $psr4 = [];
58 58
 }
59 59
\ No newline at end of file
Please login to merge, or discard this patch.