diff --git a/tests/src/ServicesTest.php b/tests/src/ServicesTest.php index 68f1fda..323decc 100644 --- a/tests/src/ServicesTest.php +++ b/tests/src/ServicesTest.php @@ -70,9 +70,10 @@ public function testTaggedServicesAsRecorded(): void { */ protected function createExporter(): Exporter_ToYamlArray { return (new Exporter_ToYamlArray()) - ->withDedicatedExporter(ContainerBuilder::class, fn ( - ContainerBuilder $builder, - ) => ['class' => \get_class($builder)]); + ->withDedicatedExporter( + ContainerBuilder::class, + fn (ContainerBuilder $builder) => ['class' => \get_class($builder)], + ); } }