Skip to content
Snippets Groups Projects
Commit c25e786a authored by Chris Ballard's avatar Chris Ballard
Browse files

PHP 5.4 compat: remove use of ::class

parent 919b0bc9
No related branches found
No related tags found
No related merge requests found
...@@ -304,7 +304,7 @@ abstract class SimpleSAML_Auth_Source ...@@ -304,7 +304,7 @@ abstract class SimpleSAML_Auth_Source
try { try {
// Check whether or not there's a factory responsible for instantiating our Auth Source instance // Check whether or not there's a factory responsible for instantiating our Auth Source instance
$factoryClass = SimpleSAML\Module::resolveClass($id, 'Auth_Source_Factory', SourceFactory::class); $factoryClass = SimpleSAML\Module::resolveClass($id, 'Auth_Source_Factory', 'SimpleSAML\Auth\SourceFactory');
/** @var SourceFactory $factory */ /** @var SourceFactory $factory */
$factory = new $factoryClass; $factory = new $factoryClass;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment