From 88eb476b9f07cc4ca3e94c90df1d912b8f1baa6b Mon Sep 17 00:00:00 2001 From: MtK Date: Tue, 31 Aug 2021 14:33:17 +0200 Subject: [PATCH 1/2] Satisfy new configuration in Symfony 5.1 See https://symfony.com/doc/current/service_container/service_decoration.html --- core/jwt.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/jwt.md b/core/jwt.md index db7a5b7ac32..9c70641cd84 100644 --- a/core/jwt.md +++ b/core/jwt.md @@ -291,7 +291,7 @@ services: App\OpenApi\JwtDecorator: decorates: 'api_platform.openapi.factory' - autoconfigure: false + arguments: ['@.inner'] ``` ## Testing From 39d5699a9b4094e6f81edd0022e80578bc3e5658 Mon Sep 17 00:00:00 2001 From: MtK Date: Tue, 31 Aug 2021 14:49:46 +0200 Subject: [PATCH 2/2] Fix: Satisfy new configuration in Symfony 5.1 --- core/jwt.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/jwt.md b/core/jwt.md index 9c70641cd84..996f805c0e6 100644 --- a/core/jwt.md +++ b/core/jwt.md @@ -291,7 +291,7 @@ services: App\OpenApi\JwtDecorator: decorates: 'api_platform.openapi.factory' - arguments: ['@.inner'] + arguments: ['@.inner'] ``` ## Testing