ParagonIE\Halite\Config::__get PHP Method

__get() public method

Getter
public __get ( string $key ) : mixed
$key string
return mixed
    public function __get(string $key)
    {
        if (\array_key_exists($key, $this->config)) {
            return $this->config[$key];
        }
        throw new CryptoException\ConfigDirectiveNotFound($key);
    }