From a0aa15a41efb55144ce14bbeba0ac22e72bd9869 Mon Sep 17 00:00:00 2001 From: Oskar Stark Date: Sat, 23 Feb 2019 19:14:32 +0000 Subject: [PATCH] Update src/Symfony/Component/PropertyInfo/Tests/Extractor/ReflectionExtractorTest.php Co-Authored-By: mantis --- .../PropertyInfo/Tests/Extractor/ReflectionExtractorTest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Component/PropertyInfo/Tests/Extractor/ReflectionExtractorTest.php b/src/Symfony/Component/PropertyInfo/Tests/Extractor/ReflectionExtractorTest.php index 77d76f2cfe..6da357b8d5 100644 --- a/src/Symfony/Component/PropertyInfo/Tests/Extractor/ReflectionExtractorTest.php +++ b/src/Symfony/Component/PropertyInfo/Tests/Extractor/ReflectionExtractorTest.php @@ -299,7 +299,8 @@ class ReflectionExtractorTest extends TestCase */ public function testExtractTypeConstructor(string $class, string $property, array $type) { - // check that constructor extractions works by default, and if passed in via context. Check that null is returned if constructor extraction is disabled + /* Check that constructor extractions works by default, and if passed in via context. + Check that null is returned if constructor extraction is disabled */ $this->assertEquals($type, $this->extractor->getTypes($class, $property, [])); $this->assertEquals($type, $this->extractor->getTypes($class, $property, ['enable_constructor_extraction' => true])); $this->assertNull($this->extractor->getTypes($class, $property, ['enable_constructor_extraction' => false]));