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