Skip to content

Commit

Permalink
BUGFIX: Fix namespaces typos to fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
dlubitz committed Dec 30, 2024
1 parent 92a4d82 commit e3ca042
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Classes/CatchUpHook/DocumentUriPathProjectionHookFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace Neos\RedirectHandler\NeosAdapter\CatchUpHook;

use Neos\ContentRepository\Core\Projection\CatchupHook\CatchUpHookFactoryDependencies;
use Neos\ContentRepository\Core\Projection\CatchupHook\CatchUpHookFactoryInterface;
use Neos\ContentRepository\Core\Projection\CatchupHook\CatchUpHookInterface;
use Neos\ContentRepository\Core\Projection\CatchUpHook\CatchUpHookFactoryDependencies;
use Neos\ContentRepository\Core\Projection\CatchUpHook\CatchUpHookFactoryInterface;
use Neos\ContentRepository\Core\Projection\CatchUpHook\CatchUpHookInterface;
use Neos\Neos\FrontendRouting\Projection\DocumentUriPathFinder;
use Neos\RedirectHandler\NeosAdapter\Service\NodeRedirectService;

Expand Down

2 comments on commit e3ca042

@creative-resort
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this fix included in any of the releases?
5.0.4 doesn't seem to cover this commit.

@dlubitz
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, this is just in main and will be part of the next release. But as PHP Namespaces are case insentive this shouldn't be any problem.

Please sign in to comment.