18 lines
214 B
PHP
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;
|
|
}
|
|
}
|