This commit is contained in:
kremsy
2014-05-10 10:12:48 +02:00
parent 74320397ea
commit bc578d9a4e
7 changed files with 24 additions and 12 deletions

View File

@ -26,12 +26,12 @@ class BillData {
* Construct new BillData
*
* @param mixed $function
* @param Player $player
* @param Player/string $player
* @param int $amount
* @param bool $pay
* @param string $receiverLogin
*/
public function __construct($function, Player $player, $amount, $pay = false, $receiverLogin = null) {
public function __construct($function, $player, $amount, $pay = false, $receiverLogin = null) {
$this->function = $function;
$this->player = $player;
$this->amount = $amount;