Ejemplo n.º 1
0
 /**
  * Get an instance of the file; Singleton to ensure correct data
  *
  * @return Xerxes_Framework_Request
  */
 public static function getInstance()
 {
     if (empty(self::$instance)) {
         self::$instance = new Xerxes_Framework_Request();
     }
     return self::$instance;
 }