From 9bbeea742424837fb58207d88e10dbca0b2cae04 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Sun, 03 May 2026 22:04:17 +0000
Subject: [PATCH] =SEO Field registration and formatting

---
 inc/managers/SEO/render/Traits/_Properties/heightTrait.php |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/inc/managers/SEO/render/Traits/_Properties/heightTrait.php b/inc/managers/SEO/render/Traits/_Properties/heightTrait.php
index 30c0c01..12da8cb 100644
--- a/inc/managers/SEO/render/Traits/_Properties/heightTrait.php
+++ b/inc/managers/SEO/render/Traits/_Properties/heightTrait.php
@@ -9,15 +9,15 @@
 }
 trait heightTrait {
 	/**
-	 * @var Distance|QuantitativeValue The height of the item.
+	 * @var Distance|QuantitativeValue|string The height of the item.
 	 */
-	protected Distance|QuantitativeValue $height;
+	protected Distance|QuantitativeValue|string $height;
 
-	public function getHeight():Distance|QuantitativeValue|null
+	public function getHeight():Distance|QuantitativeValue|string|null
 	{
 		return $this->height??null;
 	}
-	public function setHeight(Distance|QuantitativeValue $height):void
+	public function setHeight(Distance|QuantitativeValue|string $height):void
 	{
 		$this->height = $height;
 	}

--
Gitblit v1.10.0