Skip to content
Snippets Groups Projects
Commit c4b06abb authored by Daniel Jagszent's avatar Daniel Jagszent
Browse files

add PHP doc comments to app for better Intellisense #5226 #6563

parent bc7d1280
No related branches found
No related tags found
2 merge requests!1985Merge develop into postgres branch,!1937Let's Encrypt: auto cleanup & ECC
......@@ -49,6 +49,14 @@ if(DEVSYSTEM !== true) {
* @author Till Brehm
* @license bsd-3-clause
* @link empty
*
* @property-read functions $functions
* @property-read getconf $getconf
* @property-read letsencrypt $letsencrypt
* @property-read modules $modules
* @property-read plugins $plugins
* @property-read services $services
* @property-read system $system
**/
class app extends stdClass {
/** @var array List of modules that have been loaded. */
......@@ -57,8 +65,10 @@ class app extends stdClass {
var $loaded_plugins = [];
/** @var callable Script calling this. */
var $_calling_script = '';
/** @var resource? Database used for ISPConfig3. */
/** @var db|false Database used for ISPConfig3. */
public $db;
/** @var db|false */
public $dbmaster;
/**
* Class constructor, which depends on the global configuration stored in $conf.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment