Skip to content

Commit bc7811b

Browse files
committed
fix: styleci
1 parent 7ba9fd7 commit bc7811b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Builders/ServersBuilder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ class ServersBuilder
1515
public function build(array $config): array
1616
{
1717
return collect($config)
18-
->map(static function(array $server) {
18+
->map(static function (array $server) {
1919
$variables = collect(Arr::get($server, 'variables'))
20-
->map(function(array $variable, string $key) {
20+
->map(function (array $variable, string $key) {
2121
$tmp = ServerVariable::create($key)
2222
->default(Arr::get($variable, 'default'))
2323
->description(Arr::get($variable, 'description'));

tests/Builders/ServersBuilderTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,4 +146,4 @@ protected function assertSameAssociativeArray(array $expected, array $actual): v
146146
}
147147
self::assertCount(0, $actual, sprintf('[%s] does not matched keys.', join(', ', array_keys($actual))));
148148
}
149-
}
149+
}

0 commit comments

Comments
 (0)