select() public method

Adds the inserted fields to query on the current LDAP connection.
public select ( array | string $fields = [] ) : Builder
$fields array | string
return Builder
コード例 #1
0
ファイル: AdldapSearch.php プロジェクト: ishawge/jorani
 /**
  * Adds the inserted fields to query on the current LDAP connection.
  *
  * @param array $fields
  *
  * @return $this
  */
 public function select($fields = [])
 {
     $this->query->select($fields);
     return $this;
 }