TrackManiaControl/core/Bills/BillData.php

43 lines
1.0 KiB
PHP
Raw Normal View History

2014-02-25 18:34:35 +01:00
<?php
namespace ManiaControl\Bills;
2014-05-02 17:40:47 +02:00
use ManiaControl\Players\Player;
2014-02-25 18:34:35 +01:00
/**
* ManiaControl BillData Structure
*
2014-05-02 17:40:47 +02:00
* @author ManiaControl Team <mail@maniacontrol.com>
* @copyright 2014 ManiaControl Team
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
2014-02-25 18:34:35 +01:00
*/
class BillData {
/*
* Public properties
*/
2014-02-25 18:34:35 +01:00
public $function = null;
public $pay = false;
public $player = null;
public $receiverLogin = null;
2014-02-25 18:34:35 +01:00
public $amount = 0;
public $creationTime = -1;
/**
* Construct new Bill Data Model
2014-05-02 17:40:47 +02:00
*
2014-08-03 13:30:07 +02:00
* @param callable $function
* @param Player|string $player
* @param int $amount
* @param bool $pay
* @param string $receiverLogin
*/
2014-08-03 13:30:07 +02:00
public function __construct(callable $function, $player, $amount, $pay = false, $receiverLogin = null) {
2014-02-25 18:34:35 +01:00
$this->function = $function;
$this->player = $player;
$this->amount = $amount;
$this->pay = $pay;
$this->receiverLogin = $receiverLogin;
$this->creationTime = time();
}
}