Fix coding standard issue on 3.2.x#2233
Merged
Merged
Conversation
Agent-Logs-Url: https://github.com/doctrine/DoctrineBundle/sessions/d0e2d99e-aa55-4fad-8394-21497081c515 Co-authored-by: greg0ire <657779+greg0ire@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
greg0ire
May 18, 2026 15:24
View session
greg0ire
approved these changes
May 18, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes the coding standard violation in
tests/Middleware/IdleConnectionMiddlewareTest.phpwhere a fully-qualified class name was used inside a#[RequiresMethod]attribute instead of the already-imported alias.The
usestatement aliasing\Symfony\Bridge\Doctrine\Middleware\IdleConnection\DriverasIdleConnectionDriverwas already present on line 12 — the attribute just wasn't using it.Changes
\Symfony\Bridge\Doctrine\Middleware\IdleConnection\Driver::classwithIdleConnectionDriver::classin the#[RequiresMethod]attribute