Bolt\Configuration\Validation\Validator::check PHP Method

check() public method

public check ( $checkName )
    public function check($checkName)
    {
        if ($this->disableApacheChecks && $checkName === 'apache') {
            return null;
        }
        $className = $this->check[$checkName];
        return $this->getValidator($className, $checkName)->check($this->exceptionController);
    }