From c25e786a8b9aaa57061048f1910c3254c1972f4e Mon Sep 17 00:00:00 2001 From: Chris Ballard <Chris.Ballard@fitchlearning.com> Date: Mon, 15 Jan 2018 15:16:35 +0000 Subject: [PATCH] PHP 5.4 compat: remove use of ::class --- lib/SimpleSAML/Auth/Source.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/SimpleSAML/Auth/Source.php b/lib/SimpleSAML/Auth/Source.php index a69552919..44cd69a72 100644 --- a/lib/SimpleSAML/Auth/Source.php +++ b/lib/SimpleSAML/Auth/Source.php @@ -304,7 +304,7 @@ abstract class SimpleSAML_Auth_Source try { // 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 */ $factory = new $factoryClass; -- GitLab