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>
18 lines
352 B
PHP
18 lines
352 B
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OCA\User_LDAP;
|
|
|
|
class ConnectionFactory {
|
|
public function __construct(
|
|
private ILDAPWrapper $ldap,
|
|
) {
|
|
}
|
|
|
|
public function get($prefix) {
|
|
return new Connection($this->ldap, $prefix, 'user_ldap');
|
|
}
|
|
}
|