public function SimpleLdapUserSync::__construct in Simple LDAP 8
SimpleLdapUserSync constructor.
Parameters
\Drupal\simple_ldap\SimpleLdapServer $server:
\Drupal\simple_ldap_user\SimpleLdapUserManager $ldap_manager:
\Symfony\Component\EventDispatcher\EventDispatcherInterface $event_dispatcher:
\Drupal\Core\Password\PasswordInterface $password:
File
- modules/
simple_ldap_user/ src/ SimpleLdapUserSync.php, line 53
Class
Namespace
Drupal\simple_ldap_userCode
public function __construct(SimpleLdapServer $server, SimpleLdapUserManager $ldap_manager, EventDispatcherInterface $event_dispatcher, PasswordInterface $password) {
$this->server = $server;
$this->ldapManager = $ldap_manager;
$this->eventDispatcher = $event_dispatcher;
$this->password = $password;
}