From 9b10c049d56b7d3bb11c7eb6c323703908cfe959 Mon Sep 17 00:00:00 2001 From: Timm Friebe Date: Sat, 23 Mar 2024 18:19:51 +0100 Subject: [PATCH] Collapse line --- src/main/php/lang/reflection/Property.class.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) 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); }