designtopack/public/kirby/src/Form/Mixin/Max.php

19 lines
209 B
PHP
Raw Normal View History

2024-07-10 16:10:33 +02:00
<?php
namespace Kirby\Form\Mixin;
trait Max
{
protected int|null $max;
public function max(): int|null
{
return $this->max;
}
protected function setMax(int $max = null)
{
$this->max = $max;
}
}