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