Skip to content

Commit 331fbb6

Browse files
committed
fix other mailables
1 parent 400833f commit 331fbb6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/Mail/CheckoutAccessoryMail.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class CheckoutAccessoryMail extends Mailable
2121
/**
2222
* Create a new message instance.
2323
*/
24-
public function __construct(Accessory $accessory, $checkedOutTo, User $checkedOutBy,$note, $acceptance)
24+
public function __construct(Accessory $accessory, $checkedOutTo, User $checkedOutBy, $acceptance, $note)
2525
{
2626
$this->item = $accessory;
2727
$this->admin = $checkedOutBy;

app/Mail/CheckoutAssetMail.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class CheckoutAssetMail extends Mailable
2323
/**
2424
* Create a new message instance.
2525
*/
26-
public function __construct(Asset $asset, $checkedOutTo, User $checkedOutBy, $note, $acceptance)
26+
public function __construct(Asset $asset, $checkedOutTo, User $checkedOutBy, $acceptance, $note)
2727
{
2828
$this->item = $asset;
2929
$this->admin = $checkedOutBy;

0 commit comments

Comments
 (0)