Commit 4c0e6128d6721f706e38f49b42bf4200b204b73c

Authored by Karnovsky A
1 parent 14d051d5

Fix)

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
common/modules/rubrication/models/TaxGroup.php
@@ -15,7 +15,7 @@ use Yii; @@ -15,7 +15,7 @@ use Yii;
15 * @property string $module 15 * @property string $module
16 * @property boolean $hierarchical 16 * @property boolean $hierarchical
17 * @property string $settings 17 * @property string $settings
18 - * @property boolean is_filter 18 + * @property boolean $is_filter
19 * 19 *
20 * @property TaxGroupToGroup[] $taxGroupToGroups 20 * @property TaxGroupToGroup[] $taxGroupToGroups
21 * @property TaxGroupToGroup[] $taxGroupToGroups0 21 * @property TaxGroupToGroup[] $taxGroupToGroups0
@@ -62,7 +62,7 @@ class TaxGroup extends \yii\db\ActiveRecord @@ -62,7 +62,7 @@ class TaxGroup extends \yii\db\ActiveRecord
62 return [ 62 return [
63 [['name', 'module'], 'required'], 63 [['name', 'module'], 'required'],
64 [['description', 'settings'], 'string'], 64 [['description', 'settings'], 'string'],
65 - [['hierarchical'], 'boolean'], 65 + [['hierarchical', 'is_filter'], 'boolean'],
66 [['alias', 'module'], 'string', 'max' => 50], 66 [['alias', 'module'], 'string', 'max' => 50],
67 [['name'], 'string', 'max' => 255], 67 [['name'], 'string', 'max' => 255],
68 [['group_to_category'], 'safe'] 68 [['group_to_category'], 'safe']