File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ public function getId(): mixed
149
149
}
150
150
151
151
/**
152
- * @param int|string|null $id
152
+ * @param null| int|string $id
153
153
*/
154
154
public function setId (mixed $ id ): void
155
155
{
Original file line number Diff line number Diff line change 18
18
use Illuminate \Database \Eloquent \Model ;
19
19
20
20
/**
21
- * @property string| class-string<AbstractWizard> $class
22
- * @property array<string, mixed> $data
23
- * @property int $id
21
+ * @property class-string<AbstractWizard>|string $class
22
+ * @property array<string, mixed> $data
23
+ * @property int $id
24
24
*/
25
25
class Wizard extends Model
26
26
{
@@ -29,12 +29,12 @@ class Wizard extends Model
29
29
/**
30
30
* @var array<int, string>
31
31
*/
32
- protected $ guarded = [];
32
+ protected array $ guarded = [];
33
33
34
34
/**
35
35
* @var array<string, string>
36
36
*/
37
- protected $ casts = [
37
+ protected array $ casts = [
38
38
'data ' => 'array ' ,
39
39
];
40
40
}
You can’t perform that action at this time.
0 commit comments