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

anr() 공개 메소드

Ambiguous name resolution attribute to be used when choosing between objects.
public anr ( ) : string
리턴 string
    public function anr();

Usage Example

예제 #1
0
파일: Builder.php 프로젝트: adldap2/adldap2
 /**
  * Finds multiple records using ambiguous name resolution.
  *
  * @param array $anrs
  * @param array $columns
  *
  * @return mixed
  */
 public function findMany(array $anrs = [], $columns = [])
 {
     return $this->findManyBy($this->schema->anr(), $anrs, $columns);
 }
SchemaInterface