Example #1
0
 /**
  * 
  * @return \Models
  */
 public static function getInstance()
 {
     if (self::$_instance == null) {
         self::$_instance = new \GTFramework\BaseModel(\GTFramework\App::getLoger());
     }
     return self::$_instance;
 }
Example #2
0
 /**
  * 
  * @return \GTFramework\InputData
  */
 public static function getInstance()
 {
     if (self::$_instance == NULL) {
         self::$_instance = new \GTFramework\InputData(\GTFramework\App::getLoger());
     }
     return self::$_instance;
 }