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
@@ -207,6 +208,16 @@ private function definitionsSchemaSection(): ArrayNodeDefinition
207
208
/** @var ArrayNodeDefinition $node */
208
209
$node = $builder->getRootNode();
209
210
211
+
if (Kernel::VERSION_ID >= 50100) {
212
+
$deprecatedArgs = [
213
+
'overblog/graphql-bundle',
214
+
'1.0',
215
+
'The "%path%.%node%" configuration is deprecated and will be removed in 1.0. Add the "overblog_graphql.resolver_map" tag to the services instead.',
216
+
];
217
+
} else {
218
+
$deprecatedArgs = ['The "%path%.%node%" configuration is deprecated since version 0.13 and will be removed in 1.0. Add the "overblog_graphql.resolver_map" tag to the services instead.'];
219
+
}
220
+
210
221
// @phpstan-ignore-next-line
211
222
$node
212
223
->beforeNormalization()
@@ -223,7 +234,7 @@ private function definitionsSchemaSection(): ArrayNodeDefinition
223
234
->arrayNode('resolver_maps')
224
235
->defaultValue([])
225
236
->prototype('scalar')->end()
226
-
->setDeprecated('The "%path%.%node%" configuration is deprecated since version 0.13 and will be removed in 1.0. Add the "overblog_graphql.resolver_map" tag to the services instead.')
0 commit comments