Deployer\Deployer::__get PHP Method

__get() public method

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