mirror of
https://github.com/nextcloud/server.git
synced 2024-12-29 00:18:42 +00:00
381077028a
Signed-off-by: provokateurin <kate@provokateurin.de>
29 lines
681 B
PHP
29 lines
681 B
PHP
<?php
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OCA\User_LDAP;
|
|
|
|
use OCP\IServerContainer;
|
|
use OCP\LDAP\ILDAPProvider;
|
|
use OCP\LDAP\ILDAPProviderFactory;
|
|
|
|
class LDAPProviderFactory implements ILDAPProviderFactory {
|
|
public function __construct(
|
|
/** * @var IServerContainer */
|
|
private IServerContainer $serverContainer,
|
|
) {
|
|
}
|
|
|
|
public function getLDAPProvider(): ILDAPProvider {
|
|
return $this->serverContainer->get(LDAPProvider::class);
|
|
}
|
|
|
|
public function isAvailable(): bool {
|
|
return true;
|
|
}
|
|
}
|