From ed57c386db34d8693ca75311972d0929ebe5f488 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Mon, 01 Jun 2026 22:23:19 +0000
Subject: [PATCH] =Added some more Schema classes, allowed for override of  array in outputSchema for complex schema, as for timeline post types

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

diff --git a/inc/managers/SEO/render/Traits/_Properties/widthTrait.php b/inc/managers/SEO/render/Traits/_Properties/widthTrait.php
index d23977b..c09c978 100644
--- a/inc/managers/SEO/render/Traits/_Properties/widthTrait.php
+++ b/inc/managers/SEO/render/Traits/_Properties/widthTrait.php
@@ -9,15 +9,15 @@
 }
 trait widthTrait {
 	/**
-	 * @var Distance|QuantitativeValue The width of the item.
+	 * @var Distance|QuantitativeValue|string The width of the item.
 	 */
-	protected Distance|QuantitativeValue $width;
+	protected Distance|QuantitativeValue|string $width;
 
-	public function getWidth():Distance|QuantitativeValue|null
+	public function getWidth():Distance|QuantitativeValue|string|null
 	{
 		return $this->width??null;
 	}
-	public function setWidth(Distance|QuantitativeValue $width):void
+	public function setWidth(Distance|QuantitativeValue|string $width):void
 	{
 		$this->width = $width;
 	}

--
Gitblit v1.10.0