Deployer\Deployer::__get PHP 메소드

__get() 공개 메소드

public __get ( string $name ) : mixed
$name string
리턴 mixed
    public function __get($name)
    {
        if (isset($this[$name])) {
            return $this[$name];
        } else {
            throw new \InvalidArgumentException("Property \"{$name}\" does not exist.");
        }
    }