Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TASK: Remove unused registry #65

Merged
merged 3 commits into from
Oct 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
NEOS_TARGET_VERSION: '9.0'
NEOS_BASE_FOLDER: neos-base-distribution
PACKAGE_FOLDER: redirect-neosadapter
COMPOSER_ALLOW_SUPERUSER: 1

runs-on: ubuntu-latest

Expand Down
1 change: 0 additions & 1 deletion Classes/CatchUpHook/DocumentUriPathProjectionHook.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ final class DocumentUriPathProjectionHook implements CatchUpHookInterface

public function __construct(
private readonly ContentRepository $contentRepository,
private readonly ContentRepositoryRegistry $contentRepositoryRegistry,
private readonly NodeRedirectService $nodeRedirectService,
) {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ public function build(ContentRepository $contentRepository): CatchUpHookInterfac
{
return new DocumentUriPathProjectionHook(
$contentRepository,
$this->contentRepositoryRegistry,
$this->redirectService
);
}
Expand Down
Loading