Пример #1
0
 /**
  * Get Application instance
  *
  * @return BootstrapTest
  */
 protected static function getApp()
 {
     if (!self::$app) {
         $env = getenv('BLUZ_ENV') ?: 'testing';
         self::$app = BootstrapTest::getInstance();
         self::$app->init($env);
     }
     return self::$app;
 }