Adldap\Schemas\SchemaInterface::objectCategoryPerson PHP 메소드

objectCategoryPerson() 공개 메소드

The person object category.
public objectCategoryPerson ( ) : string
리턴 string
    public function objectCategoryPerson();

Usage Example

예제 #1
0
파일: Factory.php 프로젝트: adldap2/adldap2
 /**
  * Returns a query builder limited to users.
  *
  * @return Builder
  */
 public function users()
 {
     return $this->where([$this->schema->objectClass() => $this->schema->objectClassPerson(), $this->schema->objectCategory() => $this->schema->objectCategoryPerson()]);
 }
SchemaInterface