OEModule\PASAPI\controllers\V1Controller::getUpdateOnly PHP Method

getUpdateOnly() public method

Whether the request is an "updateOnly" request.
public getUpdateOnly ( ) : boolean
return boolean
    public function getUpdateOnly()
    {
        if (!array_key_exists(static::$UPDATE_ONLY_HEADER, $_SERVER)) {
            return false;
        }
        return (bool) $_SERVER[static::$UPDATE_ONLY_HEADER];
    }