mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
Fixed constructor
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
cd1d1b2d3e
commit
25807cc62f
|
@ -19,9 +19,10 @@ class UnacceptedAssetReminderMail extends Mailable
|
|||
*/
|
||||
public function __construct($checkout_info, $count)
|
||||
{
|
||||
|
||||
$this->count = $count;
|
||||
$this->target = $checkout_info['acceptance']?->assignedTo;
|
||||
$this->acceptance = $checkout_info['acceptance'];
|
||||
$this->target = $checkout_info?->assignedTo;
|
||||
$this->acceptance = $checkout_info;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue