Update src/Symfony/Component/PropertyInfo/Tests/Extractor/ReflectionExtractorTest.php

Co-Authored-By: mantis <mantis@users.noreply.github.com>
This commit is contained in:
Oskar Stark 2019-02-23 19:14:32 +00:00 committed by Paul Richards
parent c2986d5e40
commit a0aa15a41e
No known key found for this signature in database
GPG Key ID: 29967EA449106805

View File

@ -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]));