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