1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
declare(strict_types=1);
namespace StellarWP\Validation\Commands;
/** * Returning this value from the __invoke method of a ValidationRule will stop all validation rules and exclude the * value from the validated dataset. * * @since 1.2.0 */ class ExcludeValue {
}
|