Skip to content

Commit

Permalink
QA: Import ReflectionProperty
Browse files Browse the repository at this point in the history
  • Loading branch information
thekid committed Aug 26, 2024
1 parent e082eff commit bea9794
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?php namespace lang\reflection\unittest;

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

static function __static() {
self::$ASYMMETRIC= method_exists(\ReflectionProperty::class, 'isPrivateSet');
self::$ASYMMETRIC= method_exists(ReflectionProperty::class, 'isPrivateSet');
}

#[Test]
Expand Down

0 comments on commit bea9794

Please sign in to comment.