Files
gf/util/gvalid/internal/builtin/builtin_foreach.go
2022-09-26 22:11:13 +08:00

30 lines
678 B
Go

// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://github.com/gogf/gf.
package builtin
// RuleForeach implements `foreach` rule:
// It tells the next validation using current value as an array and validates each of its element.
//
// Format: foreach
type RuleForeach struct{}
func init() {
Register(RuleForeach{})
}
func (r RuleForeach) Name() string {
return "foreach"
}
func (r RuleForeach) Message() string {
return ""
}
func (r RuleForeach) Run(in RunInput) error {
return nil
}