Adldap\Schemas\SchemaInterface::objectCategory PHP Method

objectCategory() public method

An object class name used to group objects of this or derived classes.
public objectCategory ( ) : string
return string
    public function objectCategory();

Usage Example

Example #1
0
 /**
  * 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