diff --git a/modules/cas/lib/Auth/Source/CAS.php b/modules/cas/lib/Auth/Source/CAS.php index 08f153c130f4a0ae2b545ba3e950f369f06f9d64..e4a231327ae88937d0707574a61fdadde028ba9d 100644 --- a/modules/cas/lib/Auth/Source/CAS.php +++ b/modules/cas/lib/Auth/Source/CAS.php @@ -29,7 +29,7 @@ class CAS extends \SimpleSAML\Auth\Source private $ldapConfig; /** - * @var cas configuration + * @var array cas configuration */ private $casConfig; @@ -178,6 +178,7 @@ class CAS extends \SimpleSAML\Auth\Source /** * Called by linkback, to finish validate/ finish logging in. * @param array $state + * @return void */ public function finalStep(&$state) { @@ -213,6 +214,7 @@ class CAS extends \SimpleSAML\Auth\Source * Log-in using cas * * @param array &$state Information about the current authentication. + * @return void */ public function authenticate(&$state) { @@ -241,6 +243,7 @@ class CAS extends \SimpleSAML\Auth\Source * showing the user a page, or redirecting, this function should return. * * @param array &$state Information about the current logout operation. + * @return void */ public function logout(&$state) { diff --git a/modules/cas/www/linkback.php b/modules/cas/www/linkback.php index 366583c8a7e572099e66cfaad716faaa084f3788..0b062a060b0a7841ce1d867dba5a0939c723e2be 100644 --- a/modules/cas/www/linkback.php +++ b/modules/cas/www/linkback.php @@ -18,6 +18,7 @@ $state['cas:ticket'] = (string) $_GET['ticket']; assert(array_key_exists(\SimpleSAML\Module\cas\Auth\Source\CAS::AUTHID, $state)); $sourceId = $state[\SimpleSAML\Module\cas\Auth\Source\CAS::AUTHID]; +/** @var \SimpleSAML\Module\cas\Auth\Source\CAS|null $source */ $source = \SimpleSAML\Auth\Source::getById($sourceId); if ($source === null) { throw new \Exception('Could not find authentication source with id '.$sourceId);