|
15 | 15 | * @method static void validDate(mixed $value, string $message = '', string $exception = '') |
16 | 16 | * @method static void validDateTime(mixed $value, string $message = '', string $exception = '') |
17 | 17 | * @method static void validDay(mixed $value, string $message = '', string $exception = '') |
| 18 | + * @method static void validDecimal(mixed $value, string $message = '', string $exception = '') |
18 | 19 | * @method static void validDuration(mixed $value, string $message = '', string $exception = '') |
19 | 20 | * @method static void validEntity(mixed $value, string $message = '', string $exception = '') |
20 | 21 | * @method static void validEntities(mixed $value, string $message = '', string $exception = '') |
|
40 | 41 | * @method static void nullOrValidDate(mixed $value, string $message = '', string $exception = '') |
41 | 42 | * @method static void nullOrValidDateTime(mixed $value, string $message = '', string $exception = '') |
42 | 43 | * @method static void nullOrValidDay(mixed $value, string $message = '', string $exception = '') |
| 44 | + * @method static void nullOrValidDecimal(mixed $value, string $message = '', string $exception = '') |
43 | 45 | * @method static void nullOrValidDuration(mixed $value, string $message = '', string $exception = '') |
44 | 46 | * @method static void nullOrValidEntity(mixed $value, string $message = '', string $exception = '') |
45 | 47 | * @method static void nullOrValidEntities(mixed $value, string $message = '', string $exception = '') |
|
65 | 67 | * @method static void allValidDate(mixed $value, string $message = '', string $exception = '') |
66 | 68 | * @method static void allValidDateTime(mixed $value, string $message = '', string $exception = '') |
67 | 69 | * @method static void allValidDay(mixed $value, string $message = '', string $exception = '') |
| 70 | + * @method static void allValidDecimal(mixed $value, string $message = '', string $exception = '') |
68 | 71 | * @method static void allValidDuration(mixed $value, string $message = '', string $exception = '') |
69 | 72 | * @method static void allValidEntity(mixed $value, string $message = '', string $exception = '') |
70 | 73 | * @method static void allValidEntities(mixed $value, string $message = '', string $exception = '') |
@@ -93,6 +96,7 @@ class Assert extends BaseAssert |
93 | 96 | use DateTrait; |
94 | 97 | use DateTimeTrait; |
95 | 98 | use DayTrait; |
| 99 | + use DecimalTrait; |
96 | 100 | use DurationTrait; |
97 | 101 | use HexBinaryTrait; |
98 | 102 | use EntitiesTrait; |
|
0 commit comments