-
Notifications
You must be signed in to change notification settings - Fork 4
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
IBX-8470: Upgraded codebase to Symfony 6 #54
base: main
Are you sure you want to change the base?
Conversation
Quality Gate passedIssues Measures |
@@ -42,24 +42,21 @@ public function process(ContainerBuilder $container) | |||
$container->setAlias(ContentTagInterface::class, 'fos_http_cache.http.symfony_response_tagger'); | |||
} | |||
|
|||
public static function getTaggedService(ContainerBuilder $container, $tag) | |||
public static function getTaggedService(ContainerBuilder $container, $tag): string|null |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public static function getTaggedService(ContainerBuilder $container, $tag): string|null | |
public static function getTaggedService(ContainerBuilder $container, $tag): ?string |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this function being public intentional? It seems to be part of this CompilerPass internals tbh.
Caution
This is a part of bigger set of changes, to be merged together when ready
Related PRs:
Description:
This PR bumps Symfony to v6 with necessary codebase upgrades.
I've dropped
ezpublish.http_cache.purger
,ezpublish.http_cache.purger
, andezpublish.cache_clear.content.*
service references usage as they no longer exist.ℹ️ Both REST integration tests and browser tests won't be green until the entire full-stack app is upgraded.
Key changes:
QA:
Sanities in the form of regression tests.
Documentation:
No documentation required.