fix deprecations

This commit is contained in:
Alexey Chelnakov 2022-09-26 18:06:53 +03:00
parent 8610902722
commit 7ba0439cc5
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ class AnnotationsProviderCompilerPass implements CompilerPassInterface
$container
->getDefinition('nelmio_api_doc.extractor.api_doc_extractor')
->replaceArgument(6, $annotationsProviders)
->replaceArgument(5, $annotationsProviders)
;
}
}

View File

@ -29,6 +29,6 @@ class ExtractorHandlerCompilerPass implements CompilerPassInterface
$container
->getDefinition('nelmio_api_doc.extractor.api_doc_extractor')
->replaceArgument(5, $handlers);
->replaceArgument(4, $handlers);
}
}