Esempio n. 1
0
 /**
  * Get a unique instance of the UserService.
  *
  * @access public
  * @author Jerome Bogaerts, <*****@*****.**>
  * @return common_user_auth_Service
  */
 public static function singleton()
 {
     if (!isset(self::$instance)) {
         self::$instance = new static();
     }
     return self::$instance;
 }