Total Complexity | 1 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
12 | class InvoiceVerifiedEvent |
||
13 | { |
||
14 | use Dispatchable, InteractsWithSockets, SerializesModels; |
||
|
|||
15 | |||
16 | public $receipt; |
||
17 | public $driver; |
||
18 | public $invoice; |
||
19 | |||
20 | /** |
||
21 | * InvoiceVerifiedEvent constructor. |
||
22 | * |
||
23 | * @param ReceiptInterface $receipt |
||
24 | * @param DriverInterface $driver |
||
25 | * @param Invoice $invoice |
||
26 | */ |
||
27 | public function __construct(ReceiptInterface $receipt, DriverInterface $driver, Invoice $invoice) |
||
34 |