Locker\Request::getSplitAuth PHP Method

getSplitAuth() private method

Determines if the auth param is split by a space.
private getSplitAuth ( ) : boolean
return boolean
    private function getSplitAuth()
    {
        $authParam = $this->getParam(self::authParam);
        $isSplitBySpace = strpos($authParam, ' ') !== false;
        $delimeter = $isSplitBySpace ? ' ' : '+';
        return $this->splitAuthParam($authParam, $delimeter);
    }