codemasher 8 лет назад
Родитель
Сommit
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
 	 */
 	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));
 	}
 
 	/**