info = new FieldInfo("reference", "Reference", FieldType::REFERENCE); } public function format(array $input, array $output): array { return $output; } public function failMin(mixed $value): bool { if (is_null($value)) { return false; } return count($value) < $this->min; } public function failMax(mixed $value): bool { if (is_null($value)) { return false; } return count($value) < $this->min; } }