From 9bbeea742424837fb58207d88e10dbca0b2cae04 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Sun, 03 May 2026 22:04:17 +0000
Subject: [PATCH] =SEO Field registration and formatting
---
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