Total Complexity | 1 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class TechTipForceDeletedEvent |
||
12 | { |
||
13 | use Dispatchable; |
||
14 | use SerializesModels; |
||
1 ignored issue
–
show
|
|||
15 | use InteractsWithSockets; |
||
16 | |||
17 | public $tip; |
||
18 | |||
19 | /** |
||
20 | * Create a new event instance. |
||
21 | */ |
||
22 | public function __construct(TechTip $tip) |
||
27 |