From f6a77931b55f28a327f14a2fca5048a85afb0247 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Pe=CC=81rez=20Crespo?= <jaime.perez@uninett.no> Date: Tue, 3 Dec 2019 14:06:28 +0100 Subject: [PATCH] Revert "Delete LDAP.php" This reverts commit 5346182b2cc4818fab54df255f0457e759ecb4d0. --- lib/SimpleSAML/Auth/LDAP.php | 40 ++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 lib/SimpleSAML/Auth/LDAP.php diff --git a/lib/SimpleSAML/Auth/LDAP.php b/lib/SimpleSAML/Auth/LDAP.php new file mode 100644 index 000000000..413776c27 --- /dev/null +++ b/lib/SimpleSAML/Auth/LDAP.php @@ -0,0 +1,40 @@ +<?php + +namespace SimpleSAML\Auth; + +@trigger_error( + sprintf('Using the "SimpleSAML\Auth\LDAP" class is deprecated, use "SimpleSAML\Module\ldap\Auth\Ldap" instead.'), + E_USER_DEPRECATED +); + +/** + * @deprecated To be removed in 2.0 + */ +if (class_exists('\SimpleSAML\Module\ldap\Auth\Ldap')) { + class LDAP extends \SimpleSAML\Module\ldap\Auth\Ldap + { + /** + * Private constructor restricts instantiation to getInstance(). + * + * @param string $hostname + * @param bool $enable_tls + * @param bool $debug + * @param int $timeout + * @param int $port + * @param bool $referrals + * @psalm-suppress NullArgument + */ + public function __construct( + $hostname, + $enable_tls = true, + $debug = false, + $timeout = 0, + $port = 389, + $referrals = true + ) { + parent::__construct($hostname, $enable_tls, $debug, $timeout, $port, $referrals); + } + } +} else { + throw new \Exception('Missing ldap-module'); +} -- GitLab