We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc3201b commit a5a6cc6Copy full SHA for a5a6cc6
tests/Doctrine/Tests/ORM/Functional/ValueObjectsTest.php
@@ -19,8 +19,8 @@
19
use Doctrine\ORM\Mapping\MappingException;
20
use Doctrine\ORM\Mapping\ReflectionEmbeddedProperty;
21
use Doctrine\ORM\Query\QueryException;
22
-use Doctrine\Persistence\Reflection\RuntimePublicReflectionProperty;
23
use Doctrine\Tests\OrmFunctionalTestCase;
+use ReflectionProperty;
24
25
use function class_exists;
26
use function sprintf;
@@ -53,7 +53,7 @@ public function testMetadataHasReflectionEmbeddablesAccessible(): void
53
);
54
} else {
55
self::assertInstanceOf(
56
- RuntimePublicReflectionProperty::class,
+ ReflectionProperty::class,
57
$classMetadata->getReflectionProperty('address')
58
59
}
0 commit comments