Bolt\Configuration\LowlevelChecks::checkSafeMode PHP Method

checkSafeMode() public method

public checkSafeMode ( )
    public function checkSafeMode()
    {
        if (is_string($this->safeMode)) {
            $this->safeMode = $this->safeMode == '1' || strtolower($this->safeMode) === 'on' ? 1 : 0;
        }
        if ($this->safeMode) {
            throw new BootException("Bolt requires 'Safe mode' to be <b>off</b>. Please send your hosting provider to " . "<a href='http://php.net/manual/en/features.safe-mode.php'>this page</a>, and point out the " . "<span style='color: #F00;'>BIG RED BANNER</span> that states that safe_mode is <u>DEPRECATED</u>. Seriously.");
        }
    }