From a24223c91b2e4dde94b1ca2fd680fe12906bf708 Mon Sep 17 00:00:00 2001 From: Jaime Perez Crespo <jaime.perez@uninett.no> Date: Mon, 3 Aug 2015 13:52:57 +0200 Subject: [PATCH] Fix phpdoc comments in AuthMemCookie class. --- lib/SimpleSAML/AuthMemCookie.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/SimpleSAML/AuthMemCookie.php b/lib/SimpleSAML/AuthMemCookie.php index dc1348fd8..3b6ac1c02 100644 --- a/lib/SimpleSAML/AuthMemCookie.php +++ b/lib/SimpleSAML/AuthMemCookie.php @@ -10,20 +10,20 @@ 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; /** - * The configuration for Auth MemCookie. + * @var SimpleSAML_Configuration The configuration for Auth MemCookie. */ private $amcConfig; /** * 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() { if(self::$instance === NULL) { -- GitLab