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

getPartialRecord() public method

Whether the request is a partial record which only sets the fields that are provided on the given record.
public getPartialRecord ( ) : boolean
return boolean
    public function getPartialRecord()
    {
        if (!array_key_exists(static::$PARTIAL_RECORD_HEADER, $_SERVER)) {
            return false;
        }
        return (bool) $_SERVER[static::$PARTIAL_RECORD_HEADER];
    }