From 051ef80441ecadf1031ae060087814eaa8149564 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Vernet?= Date: Fri, 6 Dec 2024 20:22:45 +0100 Subject: [PATCH] feat: add fixture for empty bind section case https://github.com/symplify/config-transformer/issues/42 --- .../normal/default_with_empty_bind.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 tests/Converter/ConfigFormatConverter/YamlToPhp/Fixture/normal/default_with_empty_bind.yaml diff --git a/tests/Converter/ConfigFormatConverter/YamlToPhp/Fixture/normal/default_with_empty_bind.yaml b/tests/Converter/ConfigFormatConverter/YamlToPhp/Fixture/normal/default_with_empty_bind.yaml new file mode 100644 index 00000000000..00e5887957b --- /dev/null +++ b/tests/Converter/ConfigFormatConverter/YamlToPhp/Fixture/normal/default_with_empty_bind.yaml @@ -0,0 +1,19 @@ +services: + _defaults: + autowire: true + autoconfigure: true + bind: +----- +services(); + + $services->defaults() + ->autowire() + ->autoconfigure() +};