19 lines
209 B
PHP
19 lines
209 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 $max = null)
|
||
|
|
{
|
||
|
|
$this->max = $max;
|
||
|
|
}
|
||
|
|
}
|