We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bd4ddc commit aebea64Copy full SHA for aebea64
DependencyInjection/Compiler/AddProcessorsPass.php
@@ -51,7 +51,7 @@ public function process(ContainerBuilder $container)
51
usort(
52
$processors,
53
function (array $left, array $right) {
54
- return $left['tag']['priority'] - $right['tag']['priority'];
+ return $left['tag']['priority'] <=> $right['tag']['priority'];
55
}
56
);
57
0 commit comments