Elastica\Result::hasParam PHP Méthode

hasParam() public méthode

Test if a param from the result hit is set.
public hasParam ( string $name ) : boolean
$name string Param name to test
Résultat boolean True if the param is set, false otherwise
    public function hasParam($name)
    {
        return isset($this->_hit[$name]);
    }