changed direct public property access to using getter methods

phpdoc improvements
This commit is contained in:
Steffen Schröder
2014-08-02 22:31:46 +02:00
parent 58a668cf65
commit e560919096
70 changed files with 450 additions and 271 deletions

View File

@ -57,7 +57,7 @@ class ManiaControl implements CallbackListener, CommandListener, TimerListener {
const SETTING_PERMISSION_RESTART = 'Restart ManiaControl';
/*
* Public Properties
* Public properties
*/
public $actionsMenu = null;
public $authenticationManager = null;
@ -85,12 +85,12 @@ class ManiaControl implements CallbackListener, CommandListener, TimerListener {
public $billManager = null;
/*
* Private Properties
* Private properties
*/
private $requestQuitMessage = null;
/**
* Construct ManiaControl
* Construct a new ManiaControl instance
*/
public function __construct() {
$this->log('Loading ManiaControl v' . self::VERSION . ' ...');
@ -339,7 +339,7 @@ class ManiaControl implements CallbackListener, CommandListener, TimerListener {
$this->client->sendHideManialinkPage();
// Enable script callbacks
$this->server->scriptManager->enableScriptCallbacks();
$this->server->getScriptManager()->enableScriptCallbacks();
}
/**