PHPSA\Configuration::valueIsTrue PHP 메소드

valueIsTrue() 공개 메소드

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