Airship\Engine\Continuum\AutoUpdater::bypassSecurityAndJustInstall PHP Method

bypassSecurityAndJustInstall() public method

This is for manual installations and update scripts. It should never be invoked automatically.
public bypassSecurityAndJustInstall ( boolean $set = false ) : self
$set boolean
return self
    public function bypassSecurityAndJustInstall(bool $set = false) : self
    {
        if ($set) {
            $this->log('Disabling the security verification', LogLevel::WARNING);
        }
        $this->bypassSecurityAndJustInstall = $set;
        return $this;
    }