Skip to content

Commit 5e0ed05

Browse files
tiagofgithub-actions[bot]
authored andcommitted
Fix styling
1 parent ddc9159 commit 5e0ed05

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

src/Contracts/Volitional.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
use Illuminate\Database\Eloquent\Collection;
66
use Squarebit\Volition\Models\Rule;
77

8-
interface Volitional {
8+
interface Volitional
9+
{
910
public static function resetRulesCache(): void;
1011

1112
public function allRules(): Collection;

src/Traits/HasVolition.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ public function actions(string|Rule|null $forRule = null): Collection
5252

5353
return new Collection(
5454
$actions
55-
?->filter(fn (Action $action): bool => $action->enabled)
56-
->pluck('payload')
57-
->unique() ?? []
55+
?->filter(fn (Action $action): bool => $action->enabled)
56+
->pluck('payload')
57+
->unique() ?? []
5858
);
5959
}
6060

0 commit comments

Comments
 (0)