Skip to content

Commit

Permalink
fixed wrong character length of property 'id_item'
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-graute committed May 10, 2021
1 parent 899c303 commit 4940abf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* @property string $language
* @property string $var_name
* @property integer $id_tree
* @property integer $id_item
* @property string $id_item
* @property \Pressmind\ORM\Object\CategoryTree $tree
* @property Item $item;
*/
Expand Down Expand Up @@ -125,7 +125,7 @@ class Categorytree extends AbstractObject
'validators' => [
[
'name' => 'maxlength',
'params' => 32,
'params' => 255,
]
],
'index' => [
Expand Down

0 comments on commit 4940abf

Please sign in to comment.