Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: neos/flow-development-collection
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: de760a5f8cea601ba1c906f9dab2e617fa3d031f
Choose a base ref
..
head repository: neos/flow-development-collection
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6c611a6caf00db9a36fb21f03e36a5e73bd8c410
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 Neos.Flow/Classes/Core/Bootstrap.php
2 changes: 1 addition & 1 deletion Neos.Flow/Classes/Core/Bootstrap.php
Original file line number Diff line number Diff line change
@@ -413,7 +413,7 @@ protected function resolveRequestHandler(): RequestHandlerInterface
/** @var RequestHandlerInterface|null $bestMatchingRequestHandler */
$bestMatchingRequestHandler = null;
$bestMatchingPriority = -9999;
foreach($this->requestHandlerClassNames as $requestHandlerClassName) {
foreach ($this->requestHandlerClassNames as $requestHandlerClassName) {
if ($bestMatchingPriority > $requestHandlerClassName::getPriority()) {
continue;
}