compileQuery() 공개 메소드

Compiles the Builder instance into an LDAP query string.
public compileQuery ( Builder $builder ) : string
$builder Builder
리턴 string
예제 #1
0
파일: Builder.php 프로젝트: gwjwin/Adldap2
 /**
  * Compiles and returns the current query string.
  *
  * @return string
  */
 public function getQuery()
 {
     return $this->grammar->compileQuery($this);
 }