From d8a78594842af527e07a558181aab9a6fbc0179a Mon Sep 17 00:00:00 2001 From: Guilhem Niot Date: Mon, 7 Jun 2021 19:04:16 +0200 Subject: [PATCH] Explictly enable property access in the tests (related to https://github.com/symfony/symfony/pull/40140, it is a dev dependency) --- Tests/Functional/TestKernel.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Tests/Functional/TestKernel.php b/Tests/Functional/TestKernel.php index 027a31d..f89f6f0 100644 --- a/Tests/Functional/TestKernel.php +++ b/Tests/Functional/TestKernel.php @@ -126,6 +126,7 @@ class TestKernel extends Kernel 'validation' => null, 'form' => null, 'serializer' => ['enable_annotations' => true], + 'property_access' => true, ]; $c->loadFromExtension('framework', $framework);