friendica/src/BaseObject.php

52 lines
726 B
PHP
Raw Normal View History

<?php
/**
* @file src/BaseObject.php
*/
namespace Friendica;
require_once __DIR__ . '/../boot.php';
2018-12-30 20:42:56 +00:00
use Friendica\Network\HTTPException\InternalServerErrorException;
2018-12-30 20:42:56 +00:00
/**
* Basic object
*
* Contains what is useful to any object
*/
class BaseObject
{
/**
* @var App
*/
private static $app = null;
/**
* Get the app
*
* Same as get_app from boot.php
*
* @return App
2019-01-06 21:06:53 +00:00
* @throws \Exception
*/
public static function getApp()
{
2018-06-26 00:44:35 +00:00
if (empty(self::$app)) {
2019-02-05 21:56:57 +00:00
throw new InternalServerErrorException('App isn\'t initialized.');
}
return self::$app;
}
/**
* Set the app
*
2018-11-01 12:44:47 +00:00
* @param App $app App
*
* @return void
*/
2018-06-26 00:44:35 +00:00
public static function setApp(App $app)
{
self::$app = $app;
}
}