You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
319 B
22 lines
319 B
2 months ago
|
<?php
|
||
|
|
||
|
return [
|
||
|
'props' => [
|
||
|
/**
|
||
|
* Sets the minimum number of required entries in the section
|
||
|
*/
|
||
|
'min' => function (int $min = null) {
|
||
|
return $min;
|
||
|
}
|
||
|
],
|
||
|
'methods' => [
|
||
|
'validateMin' => function () {
|
||
|
if ($this->min && $this->min > $this->total) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
]
|
||
|
];
|