Skip to content

Commit 8350a85

Browse files
ksassnowskigithub-actions[bot]
authored andcommitted
Apply php-cs-fixer changes
1 parent e983188 commit 8350a85

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/AbstractWizard.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ public function getId(): mixed
149149
}
150150

151151
/**
152-
* @param int|string|null $id
152+
* @param null|int|string $id
153153
*/
154154
public function setId(mixed $id): void
155155
{

src/Repository/Wizard.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
use Illuminate\Database\Eloquent\Model;
1919

2020
/**
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
2424
*/
2525
class Wizard extends Model
2626
{
@@ -29,12 +29,12 @@ class Wizard extends Model
2929
/**
3030
* @var array<int, string>
3131
*/
32-
protected $guarded = [];
32+
protected array $guarded = [];
3333

3434
/**
3535
* @var array<string, string>
3636
*/
37-
protected $casts = [
37+
protected array $casts = [
3838
'data' => 'array',
3939
];
4040
}

0 commit comments

Comments
 (0)