Total Complexity | 1 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class PostModelRenamed |
||
11 | { |
||
12 | use Dispatchable, InteractsWithSockets, SerializesModels; |
||
|
|||
13 | |||
14 | public ModelInterface $model; |
||
15 | public string $new_filename; |
||
16 | |||
17 | /** |
||
18 | * Create a new event instance. |
||
19 | * |
||
20 | * @return void |
||
21 | */ |
||
22 | public function __construct(ModelInterface $model, string $new_filename) |
||
28 |