From c4aa5cdb5e90ad4b420e22772797d16980232a2b Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Wed, 15 Apr 2026 18:38:55 +0000
Subject: [PATCH] =Updating custom tables to utilize CustomTable.php

---
 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