Skip to content

Commit e43a3bc

Browse files
committed
Update ReflectionExtractorTest.php
1 parent 2c91c75 commit e43a3bc

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -309,12 +309,12 @@ public function ConstructorTypesProvider(): array
309309
{
310310
return [
311311
// php71 dummy has following constructor: __construct(string $string, int $intPrivate)
312-
[Php71Dummy::class, 'string', [new Type(Type::BUILTIN_TYPE_STRING, false)] ],
313-
[Php71Dummy::class, 'intPrivate', [new Type(Type::BUILTIN_TYPE_INT, false)] ],
312+
[Php71Dummy::class, 'string', [new Type(Type::BUILTIN_TYPE_STRING, false)]],
313+
[Php71Dummy::class, 'intPrivate', [new Type(Type::BUILTIN_TYPE_INT, false)]],
314314
// Php71DummyExtended2 adds int $intWithAccessor
315-
[Php71DummyExtended2::class, 'intWithAccessor', [new Type(Type::BUILTIN_TYPE_INT, false)] ],
316-
[Php71DummyExtended2::class, 'intPrivate', [new Type(Type::BUILTIN_TYPE_INT, false)] ],
317-
[DefaultValue::class, 'foo', null ],
315+
[Php71DummyExtended2::class, 'intWithAccessor', [new Type(Type::BUILTIN_TYPE_INT, false)]],
316+
[Php71DummyExtended2::class, 'intPrivate', [new Type(Type::BUILTIN_TYPE_INT, false)]],
317+
[DefaultValue::class, 'foo', null],
318318
];
319-
}
319+
}
320320
}

0 commit comments

Comments
 (0)