PHPSA\Configuration::valueIsTrue PHP Method

valueIsTrue() public method

Checks if a configuration setting is set.
public valueIsTrue ( string $key ) : boolean
$key string
return boolean
    public function valueIsTrue($key)
    {
        return (bool) $this->configuration[$key];
    }