Adldap\Query\Builder::hasSelects PHP Méthode

hasSelects() public méthode

Returns true / false depending if the current object contains selects.
public hasSelects ( ) : boolean
Résultat boolean
    public function hasSelects()
    {
        return count($this->getSelects()) > 0;
    }

Usage Example

Exemple #1
0
 /**
  * Returns true / false depending if the current object
  * contains selects.
  *
  * @return bool
  */
 public function hasSelects()
 {
     return $this->query->hasSelects();
 }