We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1b152e commit 2c0b5adCopy full SHA for 2c0b5ad
src/Doctrine/Entity/Metadata.php
@@ -639,7 +639,7 @@ public function toComposerArray(): array
639
}
640
if (null !== $phpExt = $this->phpExt) {
641
if (isset($phpExt['configure-options'])) {
642
- usort($phpExt['configure-options'], fn ($a, $b) => ($a['name'] ?? '') <=> ($b['name'] ?? ''));
+ usort($phpExt['configure-options'], static fn ($a, $b) => ($a['name'] ?? '') <=> ($b['name'] ?? ''));
643
644
645
$data['php-ext'] = $phpExt;
0 commit comments