Upgrade to rc5

This commit is contained in:
Bastian Allgeier
2020-12-10 11:24:42 +01:00
parent 3fec0d7c93
commit c378376bc9
257 changed files with 13009 additions and 1846 deletions

18
kirby/src/Form/Mixin/Min.php Executable file
View File

@@ -0,0 +1,18 @@
<?php
namespace Kirby\Form\Mixin;
trait Min
{
protected $min;
public function min(): ?int
{
return $this->min;
}
protected function setMin(int $min = null)
{
$this->min = $min;
}
}