You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
minor #199 Update the removal version in the deprecation message (stof)
This PR was merged into the 2.x branch.
Discussion
----------
Update the removal version in the deprecation message
Commits
-------
86f3705 Update the removal version in the deprecation message
// Trigger the deprecation only when using a Symfony version supporting the new feature
35
+
// Trigger the deprecation only when using a Symfony version supporting the new feature (i.e. 3.2+)
36
36
if (class_exists('Symfony\Bridge\Monolog\Processor\DebugProcessor') && class_exists('Symfony\Bundle\FrameworkBundle\DependencyInjection\Compiler\AddDebugLogProcessorPass')) {
37
-
@trigger_error('The '.__CLASS__.' class is deprecated since version 2.12 and will be removed in 3.0. Use AddDebugLogProcessorPass in FrameworkBundle instead.', E_USER_DEPRECATED);
37
+
@trigger_error('The '.__CLASS__.' class is deprecated since version 2.12 and will be removed in 4.0. Use AddDebugLogProcessorPass in FrameworkBundle instead.', E_USER_DEPRECATED);
0 commit comments