-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
[FrameworkBundle][Yaml] Remove some unused code #49290
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
Conversation
fancyweb
commented
Feb 7, 2023
Q | A |
---|---|
Branch? | 6.2 |
Bug fix? | no |
New feature? | no |
Deprecations? | no |
Tickets | - |
License | MIT |
Doc PR | - |
@@ -2401,10 +2401,6 @@ private function registerHttpClientConfiguration(array $config, ContainerBuilder | |||
|
|||
private function registerRetryableHttpClient(array $options, string $name, ContainerBuilder $container) | |||
{ | |||
if (!class_exists(RetryableHttpClient::class)) { |
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.
symfony/framework-bundle conflicts with
symfony/http-client < 5.4`
@@ -91,10 +91,6 @@ protected function execute(InputInterface $input, OutputInterface $output): int | |||
$this->format = $input->getOption('format'); | |||
$flags = $input->getOption('parse-tags'); | |||
|
|||
if ('github' === $this->format && !class_exists(GithubActionReporter::class)) { |
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.
symfony/yaml
conflicts with symfony/console < 5.4
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.
For 6.3?
a008ed5
to
8929b8e
Compare
Thank you @fancyweb. |
This PR was submitted for the 6.4 branch but it was merged into the 7.1 branch instead. Discussion ---------- [FrameworkBundle] Remove redundant check from test | Q | A | ------------- | --- | Branch? | 6.4 | Bug fix? | no | New feature? | no | Deprecations? | no | Issues | - | License | MIT This was overlooked in #49290. The check is no longer required since `symfony/framework-bundle` now conflicts with `symfony/http-client < 5.4` Commits ------- 4138e90 [FrameworkBundle] Remove redundant check from test