Adldap\Schemas\SchemaInterface::userId PHP Method

userId() public method

The user ID attribute.
public userId ( ) : string
return string
    public function userId();

Usage Example

コード例 #1
0
ファイル: DistinguishedName.php プロジェクト: adldap2/adldap2
 /**
  * Assembles the user ID's in the distinguished name.
  *
  * @return string
  */
 public function assembleUids()
 {
     return $this->assembleRdns($this->schema->userId(), $this->userIds);
 }
SchemaInterface