Example #1
0
File: boot.php Project: pnixx/boot
 /**
  * Получаем инстанс
  * @static
  * @return Boot
  */
 public static function getInstance()
 {
     if (!self::$_instance instanceof Boot) {
         self::$_instance = new Boot();
     }
     return self::$_instance;
 }