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

objectClass() 공개 메소드

The list of classes from which this class is derived.
public objectClass ( ) : string
리턴 string
    public function objectClass();

Usage Example

예제 #1
0
파일: Factory.php 프로젝트: adldap2/adldap2
 /**
  * Returns the root DSE record.
  *
  * @return RootDse|null
  */
 public function getRootDse()
 {
     $root = $this->query->newInstance()->setDn(null)->read(true)->whereHas($this->schema->objectClass())->first();
     if ($root instanceof Model) {
         return (new RootDse([], $this->query))->setRawAttributes($root->getAttributes());
     }
 }
All Usage Examples Of Adldap\Schemas\SchemaInterface::objectClass
SchemaInterface