Kaynağa Gözat

:octocat: remnant

codemasher 8 yıl önce
ebeveyn
işleme
37daf05058
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1 1
      src/Traits/Container.php

+ 1 - 1
src/Traits/Container.php

@@ -69,7 +69,7 @@ trait Container{
 	 * @return bool
 	 */
 	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));
 	}
 
 	/**