Predis\Command\ZSetRange::withScores PHP Метод

withScores() защищенный Метод

Checks for the presence of the WITHSCORES modifier.
protected withScores ( ) : boolean
Результат boolean
    protected function withScores()
    {
        $arguments = $this->getArguments();
        if (count($arguments) < 4) {
            return false;
        }
        return strtoupper($arguments[3]) === 'WITHSCORES';
    }