mirror of
https://gitee.com/johng/gf
synced 2026-06-24 08:48:09 +08:00
30 lines
678 B
Go
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
|
|
}
|