Skip to content

Commit 12756a0

Browse files
authored
Merge pull request #13 from binary-cats/analysis-Kg31LV
Apply fixes from StyleCI
2 parents 5afff0c + ea49f10 commit 12756a0

4 files changed

Lines changed: 7 additions & 4 deletions

File tree

src/Fireable.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ class Fireable
1010
public function __construct(
1111
protected readonly Model $model,
1212
protected readonly array $fireableAttributes = [],
13-
) {}
13+
) {
14+
}
1415

1516
/**
1617
* Match updated attributes with fireable ones and trigger events.

tests/stubs/StatusChangedToOpen.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@ class StatusChangedToOpen
66
{
77
public function __construct(
88
public readonly TestModel $model,
9-
) {}
9+
) {
10+
}
1011
}

tests/stubs/TestModel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class TestModel extends Model
1313
protected $guarded = [];
1414

1515
protected array $fireableAttributes = [
16-
'value' => ValueChanged::class,
16+
'value' => ValueChanged::class,
1717
'status' => [
1818
'open' => StatusChangedToOpen::class,
1919
],

tests/stubs/ValueChanged.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@ class ValueChanged
66
{
77
public function __construct(
88
public readonly TestModel $model,
9-
) {}
9+
) {
10+
}
1011
}

0 commit comments

Comments
 (0)