Update docblock types

This commit is contained in:
Marcus Moore 2023-04-19 12:31:12 -07:00
parent 835f8876c4
commit 144382e57a
No known key found for this signature in database

View file

@ -2,6 +2,7 @@
namespace App\Listeners; namespace App\Listeners;
use App\Events\CheckoutableCheckedOut;
use App\Models\Accessory; use App\Models\Accessory;
use App\Models\Asset; use App\Models\Asset;
use App\Models\CheckoutAcceptance; use App\Models\CheckoutAcceptance;
@ -188,8 +189,8 @@ class CheckoutableListener
/** /**
* Get the appropriate notification for the event * Get the appropriate notification for the event
* *
* @param CheckoutableCheckedIn $event * @param CheckoutableCheckedOut $event
* @param CheckoutAcceptance $acceptance * @param CheckoutAcceptance|null $acceptance
* @return Notification * @return Notification
*/ */
private function getCheckoutNotification($event, $acceptance = null) private function getCheckoutNotification($event, $acceptance = null)