Passed
Push — master ( c6902f...770aa3 )
by smiley
02:51
created
src/Container.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -50,8 +50,7 @@  discard block
 block discarded – undo
50 50
 
51 51
 		if($this->__isset($property)){
52 52
 			return $this->{$property};
53
-		}
54
-		elseif($this->env instanceof DotEnv){
53
+		} elseif($this->env instanceof DotEnv){
55 54
 			return $this->env->get($property);
56 55
 		}
57 56
 
@@ -69,8 +68,7 @@  discard block
 block discarded – undo
69 68
 		// avoid overwriting private properties
70 69
 		if(!property_exists($this, $property) || !$this->__isPrivate($property)){
71 70
 			$this->{$property} = $value;
72
-		}
73
-		elseif($this->env instanceof DotEnv){
71
+		} elseif($this->env instanceof DotEnv){
74 72
 			$this->env->set($property, $value);
75 73
 		}
76 74
 
Please login to merge, or discard this patch.