More yoda conditions

This commit is contained in:
David Stone
2025-02-09 12:30:02 -07:00
parent d9122a410d
commit 0a4c81c105
97 changed files with 323 additions and 289 deletions

View File

@ -213,12 +213,12 @@ class Form implements \JsonSerializable {
unset($this->atts['html_attr']['class']);
if ($this->type === 'number') {
if ($this->min !== false) {
if ('number' === $this->type) {
if (false !== $this->min) {
$attributes['min'] = $this->min;
}
if ($this->max !== false) {
if (false !== $this->max) {
$attributes['max'] = $this->max;
}
}