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
Esempio n. 1
0
 /**
  * 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;
 }