You are here

class SimpleLdapUser in Simple LDAP 8

Hierarchy

Expanded class hierarchy of SimpleLdapUser

2 files declare their use of SimpleLdapUser
SimpleLdapUserEvent.php in modules/simple_ldap_user/src/Events/SimpleLdapUserEvent.php
SimpleLdapUserManagerTest.php in modules/simple_ldap_user/tests/src/Unit/SimpleLdapUserManagerTest.php
Contains \Drupal\Tests\simple_ldap\Unit\SimpleLdapUserManagerTest

File

modules/simple_ldap_user/src/SimpleLdapUser.php, line 5

Namespace

Drupal\simple_ldap_user
View source
class SimpleLdapUser {

  /**
   * @var array
   */
  protected $attributes;

  /**
   * @var string
   */
  protected $dn;
  public function __construct($dn, $attributes) {
    $this->dn = $dn;
    $this->attributes = $attributes;
  }
  public function getDn() {
    return $this->dn;
  }
  public function getAttributes() {
    return $this->attributes;
  }

}

Members