LDAPUtility.php 438 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2019-2024 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
  5. * SPDX-License-Identifier: AGPL-3.0-only
  6. */
  7. namespace OCA\User_LDAP;
  8. abstract class LDAPUtility {
  9. /**
  10. * constructor, make sure the subclasses call this one!
  11. * @param ILDAPWrapper $ldap an instance of an ILDAPWrapper
  12. */
  13. public function __construct(
  14. protected ILDAPWrapper $ldap,
  15. ) {
  16. }
  17. }