mirror of
https://github.com/standardebooks/web.git
synced 2025-07-15 02:46:46 -04:00
Switch from DateTime to DateTimeImmutable across codebase
This commit is contained in:
parent
92c647f2b1
commit
e55fecaaa2
35 changed files with 102 additions and 99 deletions
|
@ -1,11 +1,13 @@
|
|||
<?
|
||||
use Safe\DateTimeImmutable;
|
||||
|
||||
/**
|
||||
* @property User $User
|
||||
*/
|
||||
class Payment extends Accessor{
|
||||
public int $PaymentId;
|
||||
public ?int $UserId = null;
|
||||
public DateTime $Created;
|
||||
public DateTimeImmutable $Created;
|
||||
public int $ChannelId;
|
||||
public string $TransactionId;
|
||||
public float $Amount;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue