Skip to content

Commit 2c0b5ad

Browse files
committed
Code style fix
Signed-off-by: Tim Goudriaan <tim@codedmonkey.com>
1 parent e1b152e commit 2c0b5ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Doctrine/Entity/Metadata.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,7 @@ public function toComposerArray(): array
639639
}
640640
if (null !== $phpExt = $this->phpExt) {
641641
if (isset($phpExt['configure-options'])) {
642-
usort($phpExt['configure-options'], fn ($a, $b) => ($a['name'] ?? '') <=> ($b['name'] ?? ''));
642+
usort($phpExt['configure-options'], static fn ($a, $b) => ($a['name'] ?? '') <=> ($b['name'] ?? ''));
643643
}
644644

645645
$data['php-ext'] = $phpExt;

0 commit comments

Comments
 (0)