designtopack/public/kirby/src/Form/Mixin/Max.php
2025-02-08 11:08:45 +01:00

18 lines
214 B
PHP

<?php
namespace Kirby\Form\Mixin;
trait Max
{
protected int|null $max;
public function max(): int|null
{
return $this->max;
}
protected function setMax(int|null $max = null)
{
$this->max = $max;
}
}