Files
lichterei-web/kirby/src/Form/Mixin/Min.php
Bastian Allgeier 1c22148d7b Upgrade to 3.7.0
2022-06-27 11:59:19 +02:00

19 lines
229 B
PHP
Executable File

<?php
namespace Kirby\Form\Mixin;
trait Min
{
protected $min;
public function min(): ?int
{
return $this->min;
}
protected function setMin(int $min = null)
{
$this->min = $min;
}
}