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