/**
  * @return App
  */
 public static function getInstance()
 {
     if (self::$_instance == null) {
         self::$_instance = new App();
     }
     return self::$_instance;
 }
Example #2
0
 /**
  * 
  * @return \Framework\App
  */
 public static function getInstance()
 {
     if (self::$instance == null) {
         self::$instance = new \Framework\App();
     }
     return self::$instance;
 }