Example #1
0
 /**
  * This function is used to retrieve the singleton instance of this class.
  *
  * @return The singleton instance of this class.
  */
 public static function getInstance()
 {
     if (self::$instance === NULL) {
         self::$instance = new SimpleSAML_AuthMemCookie();
     }
     return self::$instance;
 }