donation message fix + phpdoc plugins

This commit is contained in:
kremsy
2014-04-13 12:00:08 +02:00
committed by Steffen Schröder
parent 8eb76f094b
commit 44c59b4cae
12 changed files with 52 additions and 25 deletions

View File

@ -16,6 +16,13 @@ use ManiaControl\Players\Player;
use ManiaControl\Players\PlayerManager;
use ManiaControl\Plugins\Plugin;
/**
* ManiaControl Dedimania Plugin
*
* @author kremsy and steeffeen
* @copyright ManiaControl Copyright © 2014 ManiaControl Team
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
*/
class Dedimania implements CallbackListener, TimerListener, Plugin {
/**
* Constants

View File

@ -1,18 +1,15 @@
<?php
/**
* Dedimania DataStructure
*
* @author kremsy and steeffeen
*/
namespace Dedimania;
use ManiaControl\ManiaControl;
use Maniaplanet\DedicatedServer\Structures\Version;
/**
* Dedimania Structure
* ManiaControl Dedimania Plugin DataStructure
*
* @author kremsy & steeffeen
* @author kremsy and steeffeen
* @copyright ManiaControl Copyright © 2014 ManiaControl Team
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
*/
class DedimaniaData {
public $game;

View File

@ -1,12 +1,13 @@
<?php
/**
* Dedimania Player DataStructure
*
* @author kremsy and steeffeen
*/
namespace Dedimania;
/**
* ManiaControl Dedimania-Plugin Player DataStructure
*
* @author kremsy and steeffeen
* @copyright ManiaControl Copyright © 2014 ManiaControl Team
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
*/
class DedimaniaPlayer {
public $login = '';
public $maxRank = -1;

View File

@ -1,12 +1,13 @@
<?php
/**
* Dedimania Record DataStructure
*
* @author kremsy and steeffeen
*/
namespace Dedimania;
/**
* ManiaControl Dedimania-Plugin Record DataStructure
*
* @author kremsy and steeffeen
* @copyright ManiaControl Copyright © 2014 ManiaControl Team
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
*/
use ManiaControl\Formatter;
class RecordData {