From 2e250ff5a6111a5760adc17c5d370f49ff68e5d2 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Mon, 4 Aug 2025 17:09:28 +0200 Subject: [PATCH] Fix inline var annotations --- PropertyPath.php | 1 - 1 file changed, 1 deletion(-) diff --git a/PropertyPath.php b/PropertyPath.php index 71b90fc..5cb4376 100644 --- a/PropertyPath.php +++ b/PropertyPath.php @@ -72,7 +72,6 @@ public function __construct(self|string $propertyPath) { // Can be used as copy constructor if ($propertyPath instanceof self) { - /** @var PropertyPath $propertyPath */ $this->elements = $propertyPath->elements; $this->length = $propertyPath->length; $this->isIndex = $propertyPath->isIndex;