3 * @file src/BaseObject.php
7 require_once 'boot.php';
12 * Contains what is useful to any object
16 private static $app = null;
21 * Same as get_app from boot.php
25 public static function getApp()
27 if (empty(self::$app)) {
28 self::$app = new App(dirname(__DIR__));
37 * @param object $app App
41 public static function setApp(App $app)