Code Duplication    Length = 3-3 lines in 2 locations

src/Form/Field/ListField.php 2 locations

@@ 102-104 (lines=3) @@
99
100
        $rules["{$this->column}.values"][] = 'array';
101
102
        if (!is_null($this->max)) {
103
            $rules["{$this->column}.values"][] = "max:$this->max";
104
        }
105
106
        if (!is_null($this->min)) {
107
            $rules["{$this->column}.values"][] = "min:$this->min";
@@ 106-108 (lines=3) @@
103
            $rules["{$this->column}.values"][] = "max:$this->max";
104
        }
105
106
        if (!is_null($this->min)) {
107
            $rules["{$this->column}.values"][] = "min:$this->min";
108
        }
109
110
        $attributes["{$this->column}.values"] = $this->label;
111