-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
[DEPRECATION] Added deprecated trigger for ApacheMatcherDumper and ApacheUrlMatcher #12728
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
blamh
commented
Nov 29, 2014
Q | A |
---|---|
Bug fix? | no |
New feature? | no |
BC breaks? | no |
Deprecations? | yes |
Tests pass? | yes |
Fixed tickets | #12655 |
License | MIT |
Doc PR |
@@ -32,6 +32,7 @@ | |||
*/ | |||
public function __construct(RouteCollection $routes) | |||
{ | |||
trigger_error('The Symfony\Component\Routing\Matcher\Dumper\MatcherDumper is deprecated since it\'s hard to replicate the behaviour of the PHP implementation and the performance gains are minimal.', E_USER_DEPRECATED); |
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.
this class is not deprecated
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.
Mybad. Deprecated wrong class. Fixed.
@@ -11,6 +11,8 @@ | |||
|
|||
namespace Symfony\Component\Routing\Matcher; | |||
|
|||
trigger_error('The Symfony\Component\Routing\Matcher\Dumper\ApacheUrlMatcher is deprecated since it\'s hard to replicate the behaviour of the PHP implementation and the performance gains are minimal.', E_USER_DEPRECATED); |
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.
Can you add something along the lines of "is deprecated since version 2.x and will be removed in 3.0."?
Thank you @blamh. |
…Dumper and ApacheUrlMatcher (blamh) This PR was merged into the 2.7 branch. Discussion ---------- [DEPRECATION] Added deprecated trigger for ApacheMatcherDumper and ApacheUrlMatcher | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | yes | Tests pass? | yes | Fixed tickets | #12655 | License | MIT | Doc PR | Commits ------- 963615a Added deprecated trigger for ApacheMatcherDumper and ApacheUrlMatcher
This PR was merged into the 4.4 branch. Discussion ---------- [HttpFoundation] Drop support for ApacheRequest | Q | A | ------------- | --- | Branch? | 4.4 | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | yes | Tests pass? | yes | Fixed tickets | | License | MIT | Doc PR | `ApacheUrlMatcher` has been [deprecated in 2.7](#12728) and removed in 3.0 I think we forgot to remove this class too. This class in never used in symfony, and there are no more reference in the documentation. Commits ------- f82e28c [HttpFoundation] Deprecated ApacheRequest