Skip to content
Snippets Groups Projects
Commit a24223c9 authored by Jaime Perez Crespo's avatar Jaime Perez Crespo
Browse files

Fix phpdoc comments in AuthMemCookie class.

parent f18041ef
No related branches found
No related tags found
No related merge requests found
...@@ -10,20 +10,20 @@ ...@@ -10,20 +10,20 @@
class SimpleSAML_AuthMemCookie { class SimpleSAML_AuthMemCookie {
/** /**
* This is the singleton instance of this class. * @var SimpleSAML_AuthMemCookie This is the singleton instance of this class.
*/ */
private static $instance = NULL; private static $instance = NULL;
/** /**
* The configuration for Auth MemCookie. * @var SimpleSAML_Configuration The configuration for Auth MemCookie.
*/ */
private $amcConfig; private $amcConfig;
/** /**
* This function is used to retrieve the singleton instance of this class. * This function is used to retrieve the singleton instance of this class.
* *
* @return The singleton instance of this class. * @return SimpleSAML_AuthMemCookie The singleton instance of this class.
*/ */
public static function getInstance() { public static function getInstance() {
if(self::$instance === NULL) { if(self::$instance === NULL) {
......
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