PHPDoc improvements

Replaced deprecated method call
This commit is contained in:
Steffen Schröder
2014-05-20 14:59:17 +02:00
parent 7bcd42d927
commit 6ca5decdb4
13 changed files with 27 additions and 22 deletions

View File

@ -101,6 +101,8 @@ class ChatlogPlugin implements CallbackListener, Plugin {
/**
* Build the Log File Name and Folder
*
* @return bool
*/
private function buildLogFileName() {
$folderName = $this->maniaControl->settingManager->getSettingValue($this, self::SETTING_FOLDERNAME);
@ -132,6 +134,7 @@ class ChatlogPlugin implements CallbackListener, Plugin {
}
}
$this->fileName = $folderDir . DIRECTORY_SEPARATOR . $fileName;
return true;
}
/**