mirror of
https://github.com/Karaka-Management/oms-Marketing.git
synced 2026-01-11 17:18:40 +00:00
rector fixes + bug fixes
This commit is contained in:
parent
99b8409174
commit
36385995ad
|
|
@ -35,37 +35,37 @@ class AccountRelation
|
|||
*/
|
||||
public int $id = 0;
|
||||
|
||||
/**
|
||||
* The ID of the promotion associated with this account relation.
|
||||
*
|
||||
* @var int
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public int $promotion = 0;
|
||||
/**
|
||||
* The ID of the promotion associated with this account relation.
|
||||
*
|
||||
* @var int
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public int $promotion = 0;
|
||||
|
||||
/**
|
||||
* The account associated with this account relation.
|
||||
*
|
||||
* @var Account
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public Account $account;
|
||||
/**
|
||||
* The account associated with this account relation.
|
||||
*
|
||||
* @var Account
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public Account $account;
|
||||
|
||||
/**
|
||||
* The type of this account relation.
|
||||
*
|
||||
* @var int
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public int $type = AccountRelationType::CUSTOMER;
|
||||
/**
|
||||
* The type of this account relation.
|
||||
*
|
||||
* @var int
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public int $type = AccountRelationType::CUSTOMER;
|
||||
|
||||
/**
|
||||
/**
|
||||
* Constructor.
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
$this->account = new NullAccount();
|
||||
}
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
$this->account = new NullAccount();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user