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