Elastica\Result::hasParam PHP Метод

hasParam() публичный Метод

Test if a param from the result hit is set.
public hasParam ( string $name ) : boolean
$name string Param name to test
Результат boolean True if the param is set, false otherwise
    public function hasParam($name)
    {
        return isset($this->_hit[$name]);
    }