Merge pull request #7288 from annando/fix-search
[friendica.git/.git] / src / BaseObject.php
index d006c24..9a2d064 100644 (file)
@@ -4,7 +4,9 @@
  */
 namespace Friendica;
 
-require_once 'boot.php';
+require_once __DIR__ . '/../boot.php';
+
+use Friendica\Network\HTTPException\InternalServerErrorException;
 
 /**
  * Basic object
@@ -13,6 +15,9 @@ require_once 'boot.php';
  */
 class BaseObject
 {
+       /**
+        * @var App
+        */
        private static $app = null;
 
        /**
@@ -21,11 +26,12 @@ class BaseObject
         * Same as get_app from boot.php
         *
         * @return App
+        * @throws \Exception
         */
        public static function getApp()
        {
                if (empty(self::$app)) {
-                       self::$app = new App(dirname(__DIR__));
+                       throw new InternalServerErrorException('App isn\'t initialized.');
                }
 
                return self::$app;