Skip to content

Commit b3e582c

Browse files
committed
Use the module class instead of the deprecated SSP-class
1 parent 2765c3b commit b3e582c

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
@@ -16,7 +16,7 @@ class Negotiate extends \SimpleSAML\Auth\Source
1616
// Constants used in the module
1717
const STAGEID = '\SimpleSAML\Module\negotiate\Auth\Source\Negotiate.StageId';
1818

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

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

0 commit comments

Comments
 (0)