model stan all good

This commit is contained in:
bs
2026-08-22 02:51:52 -07:00
parent 134e23bf98
commit 51313b001e
3 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -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 {
@@ -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 {
+2 -2
View File
@@ -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 {