Esempio n. 1
0
 /**
  * getInstance
  * 
  * Get a singleton instance of the class
  *
  * @return Response
  */
 public static function getInstance()
 {
     if (!self::$_instance instanceof self) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }