From 51313b001e9f44868e1759099462e156807ccc41 Mon Sep 17 00:00:00 2001 From: Brandon Shipley Date: Sat, 22 Aug 2026 02:51:52 -0700 Subject: [PATCH] model stan all good --- src/Model/Entity/ProductCategory.php | 6 +++--- src/Model/Entity/ProductCategoryVariantOption.php | 2 +- src/Model/Entity/ProductVariant.php | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Model/Entity/ProductCategory.php b/src/Model/Entity/ProductCategory.php index 5904412..4f7eeb0 100644 --- a/src/Model/Entity/ProductCategory.php +++ b/src/Model/Entity/ProductCategory.php @@ -20,9 +20,9 @@ use Cake\ORM\Entity; * @property \Cake\I18n\DateTime|null $deleted * @property \CakeProducts\Model\Enum\ProductProductTypeId|null $default_product_type_id * - * @property \CakeProducts\Model\Entity\ProductCatalog $product_catalog - * @property \CakeProducts\Model\Entity\ParentProductCategory $parent_product_category - * @property \CakeProducts\Model\Entity\ChildProductCategory[] $child_product_categories + * @property ProductCatalog $product_catalog + * @property ProductCategory $parent_product_category + * @property ProductCategory[] $child_product_categories */ class ProductCategory extends Entity { diff --git a/src/Model/Entity/ProductCategoryVariantOption.php b/src/Model/Entity/ProductCategoryVariantOption.php index f48dcfa..3f976a7 100644 --- a/src/Model/Entity/ProductCategoryVariantOption.php +++ b/src/Model/Entity/ProductCategoryVariantOption.php @@ -15,7 +15,7 @@ use Cake\ORM\Entity; * @property \Cake\I18n\DateTime $modified * @property \Cake\I18n\DateTime|null $deleted * - * @property CakeProducts\Model\Entity\ProductCategoryVariant $product_category_variant + * @property ProductCategoryVariant $product_category_variant */ class ProductCategoryVariantOption extends Entity { diff --git a/src/Model/Entity/ProductVariant.php b/src/Model/Entity/ProductVariant.php index a482c97..dc75ab0 100644 --- a/src/Model/Entity/ProductVariant.php +++ b/src/Model/Entity/ProductVariant.php @@ -14,8 +14,8 @@ use Cake\ORM\Entity; * @property string $product_id * @property bool $enabled * - * @property CakeProducts\Model\Entity\ProductCategoryVariant $product_category_variant - * @property CakeProducts\Model\Entity\Product $product + * @property ProductCategoryVariant $product_category_variant + * @property Product $product */ class ProductVariant extends Entity {