Skip to content

Commit 87a2821

Browse files
taylorotwellgithub-actions[bot]
authored andcommitted
Fix code styling
1 parent dce52a8 commit 87a2821

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/Feature/ArrayDriverTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1201,7 +1201,7 @@ public function test_can_retrieve_scalar_values_without_in_memory_cache(): void
12011201

12021202
foreach ($data as $name => $expectedValue) {
12031203
$feature = 'scalar-feature:'.$name;
1204-
Feature::define($feature, fn(User $user) => $expectedValue);
1204+
Feature::define($feature, fn (User $user) => $expectedValue);
12051205

12061206
$generated = Feature::for($user)->value($feature);
12071207

tests/Feature/DatabaseDriverTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1731,7 +1731,7 @@ public function test_can_retrieve_scalar_values_without_in_memory_cache(): void
17311731

17321732
foreach ($data as $name => $expectedValue) {
17331733
$feature = 'scalar-feature:'.$name;
1734-
Feature::define($feature, fn(User $user) => $expectedValue);
1734+
Feature::define($feature, fn (User $user) => $expectedValue);
17351735

17361736
$generated = Feature::for($user)->value($feature);
17371737

0 commit comments

Comments
 (0)