Skip to content
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

fix symfony/config deprecation #1153

Merged
merged 8 commits into from Apr 3, 2020
6 changes: 5 additions & 1 deletion DependencyInjection/Configuration.php
Expand Up @@ -91,7 +91,11 @@ private function addDbalSection(ArrayNodeDefinition $node) : void
->end()
->children()
->scalarNode('class')->isRequired()->end()
->booleanNode('commented')->setDeprecated()->end()
->booleanNode('commented')->setDeprecated(
'doctrine/DoctrineBundle',
jrushlow marked this conversation as resolved.
Show resolved Hide resolved
'2.0',
'Type commenting features removed; the corresponding config parameter was deprecated and will be dropped in 3.0.'
)->end()
->end()
->end()
->end()
Expand Down