mirror of
https://github.com/standardebooks/web.git
synced 2025-07-15 02:46:46 -04:00
Add type hints for remaining classes
This commit is contained in:
parent
d7718218ad
commit
783c09864f
35 changed files with 212 additions and 210 deletions
|
@ -1,19 +1,18 @@
|
|||
<?
|
||||
|
||||
/**
|
||||
* @property User $User
|
||||
*/
|
||||
class Payment extends PropertiesBase{
|
||||
public $PaymentId;
|
||||
public $UserId = null;
|
||||
protected $_User = null;
|
||||
public $Created;
|
||||
public $ChannelId;
|
||||
public $TransactionId;
|
||||
public $Amount;
|
||||
public $Fee;
|
||||
public $IsRecurring;
|
||||
public $IsMatchingDonation = false;
|
||||
public int $PaymentId;
|
||||
public ?int $UserId = null;
|
||||
public DateTime $Created;
|
||||
public int $ChannelId;
|
||||
public string $TransactionId;
|
||||
public float $Amount;
|
||||
public float $Fee;
|
||||
public bool $IsRecurring;
|
||||
public bool $IsMatchingDonation = false;
|
||||
protected ?User $_User = null;
|
||||
|
||||
|
||||
// *******
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue