From 88d9e0e2b7997eb0c96dc737082c91b4e3f7ca6e Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Wed, 17 Jun 2026 15:10:37 +0000
Subject: [PATCH] =Fixed for single image upload fields populating the image meta. Need to check galleries now.
---
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