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

check() public method

public check ( Bolt\Controller\ExceptionControllerInterface $exceptionController )
$exceptionController Bolt\Controller\ExceptionControllerInterface
    public function check(ExceptionControllerInterface $exceptionController)
    {
        if (get_magic_quotes_gpc()) {
            return $exceptionController->systemCheck(Validator::CHECK_MAGIC_QUOTES);
        }
        return null;
    }