3 * @file src/BaseObject.php
7 require_once __DIR__ . '/../boot.php';
9 use Friendica\Network\HTTPException\InternalServerErrorException;
14 * Contains what is useful to any object
21 private static $app = null;
26 * Same as get_app from boot.php
31 public static function getApp()
33 if (empty(self::$app)) {
34 throw new InternalServerErrorException('App isn\'t initialized.');
47 public static function setApp(App $app)