codemasher пре 8 година
родитељ
комит
37daf05058
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      src/Traits/Container.php

+ 1 - 1
src/Traits/Container.php

@@ -69,7 +69,7 @@ trait Container{
 	 * @return bool
 	 * @return bool
 	 */
 	 */
 	public function __isset($property){
 	public function __isset($property){
-		return (property_exists($this, $property) && !$this->__isPrivate($property)) || ($this->env instanceof DotEnv && $this->env->get($property));
+		return (property_exists($this, $property) && !$this->__isPrivate($property));
 	}
 	}
 
 
 	/**
 	/**