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;
|
|
|
|
|
}
|
|
|
|
|
|
2025-02-07 17:11:37 +01:00
|
|
|
protected function setMax(int|null $max = null)
|
2024-07-10 16:10:33 +02:00
|
|
|
{
|
|
|
|
|
$this->max = $max;
|
|
|
|
|
}
|
|
|
|
|
}
|