Skip to content

Commit 0c856f0

Browse files
committed
pint
1 parent 7c9ea50 commit 0c856f0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/Commands/GenerateQuestions/PhpExtensionsQuestion.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ public function getAnswer(BaseCommand $command, string $phpVersion): array
4646
}
4747

4848
$default = collect($detected)
49-
->map(fn($extension) => array_search($extension, $supported))
50-
->where(fn($key) => is_int($key))
49+
->map(fn ($extension) => array_search($extension, $supported))
50+
->where(fn ($key) => is_int($key))
5151
->join(',');
5252

5353
return $command->choice(

tests/Unit/Detectors/PhpExtensionsDetectorTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public function provideConfigurations(): array
5252
],
5353
],
5454
[
55-
['apcu','bcmath'],
55+
['apcu', 'bcmath'],
5656
[
5757
'cache.default' => 'apc',
5858
'cache.stores.apc.driver' => 'apc',
@@ -94,7 +94,7 @@ public function provideConfigurations(): array
9494
],
9595
],
9696
[
97-
['apcu', 'bcmath','pdo_mysql'],
97+
['apcu', 'bcmath', 'pdo_mysql'],
9898
[
9999
'cache.default' => 'apc',
100100
'cache.stores.apc.driver' => 'apc',
@@ -108,7 +108,7 @@ public function provideConfigurations(): array
108108
],
109109
],
110110
[
111-
['bcmath','memcached','pdo_sqlsrv','redis','sqlsrv'],
111+
['bcmath', 'memcached', 'pdo_sqlsrv', 'redis', 'sqlsrv'],
112112
[
113113
'cache.default' => 'memcached',
114114
'cache.stores.memcached.driver' => 'memcached',

0 commit comments

Comments
 (0)