:octocat: remnant

This commit is contained in:
codemasher
2018-01-19 06:06:49 +01:00
parent 02924c32ed
commit 37daf05058
+1 -1
View File
@@ -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));
}
/**