Skip to content

Commit bea9794

Browse files
committed
QA: Import ReflectionProperty
1 parent e082eff commit bea9794

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/test/php/lang/reflection/unittest/PropertiesTest.class.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?php namespace lang\reflection\unittest;
22

3+
use ReflectionProperty;
34
use lang\reflection\{AccessingFailed, CannotAccess, Constraint, Modifiers};
45
use lang\{Primitive, Type, TypeIntersection, TypeUnion, XPClass, IllegalArgumentException};
56
use test\verify\{Condition, Runtime};
@@ -11,7 +12,7 @@ class PropertiesTest {
1112
private static $ASYMMETRIC;
1213

1314
static function __static() {
14-
self::$ASYMMETRIC= method_exists(\ReflectionProperty::class, 'isPrivateSet');
15+
self::$ASYMMETRIC= method_exists(ReflectionProperty::class, 'isPrivateSet');
1516
}
1617

1718
#[Test]

0 commit comments

Comments
 (0)