composer update + load more dev dependencies for code quality, checkstyle fix

This commit is contained in:
bs
2026-08-21 23:57:55 -07:00
parent c196dc2fe0
commit 8e142f56ab
104 changed files with 6341 additions and 6743 deletions
+13 -12
View File
@@ -17,9 +17,9 @@ use Cake\ORM\Entity;
* @property ProductCategoryVariant $product_category_variant
* @property ProductCategoryVariantOption $product_category_variant_option
*/
class ProductSkuVariantValue extends Entity
{
/**
class ProductSkuVariantValue extends Entity {
/**
* Fields that can be mass assigned using newEntity() or patchEntity().
*
* Note that when '*' is set to true, this allows all unspecified fields to
@@ -28,14 +28,15 @@ class ProductSkuVariantValue extends Entity
*
* @var array<string, bool>
*/
protected array $_accessible = [
'product_sku_id' => true,
'product_variant_id' => true,
'product_category_variant_option_id' => true,
protected array $_accessible = [
'product_sku_id' => true,
'product_variant_id' => true,
'product_category_variant_option_id' => true,
// entities
'product_sku' => true,
'product_variant' => true,
'product_category_variant_option' => true,
];
// entities
'product_sku' => true,
'product_variant' => true,
'product_category_variant_option' => true,
];
}