Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
ISPConfig 3
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ISPConfig
ISPConfig 3
Commits
c4b06abb
Commit
c4b06abb
authored
8 months ago
by
Daniel Jagszent
Browse files
Options
Downloads
Patches
Plain Diff
add PHP doc comments to app for better Intellisense #5226 #6563
parent
bc7d1280
No related branches found
No related tags found
2 merge requests
!1985
Merge develop into postgres branch
,
!1937
Let's Encrypt: auto cleanup & ECC
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
server/lib/app.inc.php
+11
-1
11 additions, 1 deletion
server/lib/app.inc.php
with
11 additions
and
1 deletion
server/lib/app.inc.php
+
11
−
1
View file @
c4b06abb
...
...
@@ -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.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment