compileQuery() public method

Compiles the Builder instance into an LDAP query string.
public compileQuery ( Builder $builder ) : string
$builder Builder
return string
Esempio n. 1
0
 /**
  * Compiles and returns the current query string.
  *
  * @return string
  */
 public function getQuery()
 {
     return $this->grammar->compileQuery($this);
 }