improved PHPDoc & applied common style
This commit is contained in:
@ -1,22 +1,32 @@
|
||||
<?php
|
||||
|
||||
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
|
||||
* @author ManiaControl Team <mail@maniacontrol.com>
|
||||
* @copyright 2014 ManiaControl Team
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
*/
|
||||
class DedimaniaPlayer {
|
||||
/*
|
||||
* Public Properties
|
||||
*/
|
||||
public $login = '';
|
||||
public $maxRank = -1;
|
||||
public $banned = false;
|
||||
public $optionsEnabled = false;
|
||||
public $options = '';
|
||||
|
||||
/**
|
||||
* Construct a new Dedimania Player Model
|
||||
* @param mixed$player
|
||||
*/
|
||||
public function __construct($player) {
|
||||
if (!$player) return;
|
||||
if (!$player) {
|
||||
return;
|
||||
}
|
||||
|
||||
$this->login = $player['Login'];
|
||||
$this->maxRank = $player['MaxRank'];
|
||||
@ -28,8 +38,8 @@ class DedimaniaPlayer {
|
||||
/**
|
||||
* Construct a new Player by its login and maxRank
|
||||
*
|
||||
* @param $login
|
||||
* @param $maxRank
|
||||
* @param string $login
|
||||
* @param int $maxRank
|
||||
*/
|
||||
public function constructNewPlayer($login, $maxRank) {
|
||||
$this->login = $login;
|
||||
|
Reference in New Issue
Block a user