Skip to content

Commit 9d6de4e

Browse files
committed
Use the module class instead of the deprecated SSP-class
1 parent 9306747 commit 9d6de4e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/Auth/Source/Negotiate.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Negotiate extends \SimpleSAML\Auth\Source
1717
// Constants used in the module
1818
const STAGEID = '\SimpleSAML\Module\negotiate\Auth\Source\Negotiate.StageId';
1919

20-
/** @var \SimpleSAML\Auth\LDAP|null */
20+
/** @var \SimpleSAML\Module\ldap\Auth\Ldap|null */
2121
protected $ldap = null;
2222

2323
/** @var string */
@@ -152,7 +152,7 @@ public function authenticate(&$state)
152152
Logger::debug('Negotiate - authenticate(): looking for Negotiate');
153153
if (!empty($_SERVER['HTTP_AUTHORIZATION'])) {
154154
Logger::debug('Negotiate - authenticate(): Negotiate found');
155-
$this->ldap = new \SimpleSAML\Auth\LDAP(
155+
$this->ldap = new \SimpleSAML\Module\ldap\Auth\Ldap(
156156
$this->hostname,
157157
$this->enableTLS,
158158
$this->debugLDAP,

0 commit comments

Comments
 (0)