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 713c6ef commit 518c012Copy full SHA for 518c012
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