Passed
Push — master ( ff9723...c2666e )
by Vadim
01:26
created
src/UnresolvableDependency.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -5,8 +5,8 @@
 block discarded – undo
5 5
 /** Is thrown when no dependency exists or can be created for the supplied name. */
6 6
 class UnresolvableDependency extends DiException
7 7
 {
8
-	/** @param	string	$name	Name of the dependency. */
9
-	public function __construct(string $name) {
10
-		parent::__construct(['name' => $name]);
11
-	}
8
+    /** @param	string	$name	Name of the dependency. */
9
+    public function __construct(string $name) {
10
+        parent::__construct(['name' => $name]);
11
+    }
12 12
 }
13 13
\ No newline at end of file
Please login to merge, or discard this patch.
src/AppContext.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 class AppContext extends AppContextBase
8 8
 {
9 9
     use
10
-          storage\LocalStorage
10
+            storage\LocalStorage
11 11
         , storage\SessionStorage
12 12
         , storage\GlobalStorage
13 13
         , creator\MethodCreator
Please login to merge, or discard this patch.
src/storage/StorageFactoryNotDefined.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -5,8 +5,8 @@
 block discarded – undo
5 5
 /** Is thrown when a required factory method is missing, thus providing no storage for an active scope */
6 6
 class StorageFactoryNotDefined extends \evelikto\di\DiException
7 7
 {
8
-	/** @param	string	$name	Name of the required factory */
9
-	public function __construct(string $name) {
10
-		parent::__construct(['name' => $name]);
11
-	}
8
+    /** @param	string	$name	Name of the required factory */
9
+    public function __construct(string $name) {
10
+        parent::__construct(['name' => $name]);
11
+    }
12 12
 }
13 13
\ No newline at end of file
Please login to merge, or discard this patch.
src/UnresolvableParameter.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -5,8 +5,8 @@
 block discarded – undo
5 5
 /** Is thrown when autowiring of a method parameter fails */
6 6
 class UnresolvableParameter extends DiException
7 7
 {
8
-	/** @param	string	$name	Name of the parameter. */
9
-	public function __construct(string $name) {
10
-		parent::__construct(['name' => $name]);
11
-	}
8
+    /** @param	string	$name	Name of the parameter. */
9
+    public function __construct(string $name) {
10
+        parent::__construct(['name' => $name]);
11
+    }
12 12
 }
13 13
\ No newline at end of file
Please login to merge, or discard this patch.