Refactored models.

This commit is contained in:
Dmitry Khomutov 2018-03-10 01:00:53 +07:00
commit fb11ba4652
No known key found for this signature in database
GPG key ID: EC19426474B37AAC
34 changed files with 2006 additions and 2335 deletions

View file

@ -79,6 +79,6 @@ class Ldap extends AbstractProvider implements LoginPasswordProviderInterface
$parts = explode("@", $identifier);
$username = $parts[0];
return $userService->createUser($username, $identifier, $this->key, json_encode($this->config), '', false);
return $userService->createUser($username, $identifier, $this->key, $this->config, '', false);
}
}