diff --git a/src/main/php/lang/reflection/Property.class.php b/src/main/php/lang/reflection/Property.class.php index 2388310..cd38e94 100755 --- a/src/main/php/lang/reflection/Property.class.php +++ b/src/main/php/lang/reflection/Property.class.php @@ -34,11 +34,7 @@ public function constraint() { return Reflection::meta()->propertyType($this->reflect); }; - $t= Type::resolve( - $this->reflect->getType(), - Member::resolve($this->reflect), - $api - ); + $t= Type::resolve($this->reflect->getType(), Member::resolve($this->reflect), $api); return new Constraint($t ?? Type::$VAR, $present); }