Fixed constructor
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
cd1d1b2d3e
commit
25807cc62f
1 changed files with 3 additions and 2 deletions
|
@ -19,9 +19,10 @@ class UnacceptedAssetReminderMail extends Mailable
|
||||||
*/
|
*/
|
||||||
public function __construct($checkout_info, $count)
|
public function __construct($checkout_info, $count)
|
||||||
{
|
{
|
||||||
|
|
||||||
$this->count = $count;
|
$this->count = $count;
|
||||||
$this->target = $checkout_info['acceptance']?->assignedTo;
|
$this->target = $checkout_info?->assignedTo;
|
||||||
$this->acceptance = $checkout_info['acceptance'];
|
$this->acceptance = $checkout_info;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue