From 3baf3d2545ba6ece6b74a64c0def59bd0774cf54 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Wed, 10 Jun 2026 16:34:12 +0000
Subject: [PATCH] =Laid the groundwork for an improved DashboardManager.php setup. Have to put it aside so I can get the dang Northeh done though.
---
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