|
20 | 20 | * @method static void validDuration(mixed $value, string $message = '', string $exception = '') |
21 | 21 | * @method static void validEntity(mixed $value, string $message = '', string $exception = '') |
22 | 22 | * @method static void validEntities(mixed $value, string $message = '', string $exception = '') |
| 23 | + * @method static void validFloat(mixed $value, string $message = '', string $exception = '') |
23 | 24 | * @method static void validHexBinary(mixed $value, string $message = '', string $exception = '') |
24 | 25 | * @method static void validID(mixed $value, string $message = '', string $exception = '') |
25 | 26 | * @method static void validIDRef(mixed $value, string $message = '', string $exception = '') |
|
55 | 56 | * @method static void nullOrValidDuration(mixed $value, string $message = '', string $exception = '') |
56 | 57 | * @method static void nullOrValidEntity(mixed $value, string $message = '', string $exception = '') |
57 | 58 | * @method static void nullOrValidEntities(mixed $value, string $message = '', string $exception = '') |
| 59 | + * @method static void nullOrValidFloat(mixed $value, string $message = '', string $exception = '') |
58 | 60 | * @method static void nullOrValidHexBinary(mixed $value, string $message = '', string $exception = '') |
59 | 61 | * @method static void nullOrValidID(mixed $value, string $message = '', string $exception = '') |
60 | 62 | * @method static void nullOrValidIDRef(mixed $value, string $message = '', string $exception = '') |
|
90 | 92 | * @method static void allValidDuration(mixed $value, string $message = '', string $exception = '') |
91 | 93 | * @method static void allValidEntity(mixed $value, string $message = '', string $exception = '') |
92 | 94 | * @method static void allValidEntities(mixed $value, string $message = '', string $exception = '') |
| 95 | + * @method static void allValidFloat(mixed $value, string $message = '', string $exception = '') |
93 | 96 | * @method static void allValidHexBinary(mixed $value, string $message = '', string $exception = '') |
94 | 97 | * @method static void allValidID(mixed $value, string $message = '', string $exception = '') |
95 | 98 | * @method static void allValidIDRef(mixed $value, string $message = '', string $exception = '') |
@@ -129,6 +132,7 @@ class Assert extends BaseAssert |
129 | 132 | use HexBinaryTrait; |
130 | 133 | use EntitiesTrait; |
131 | 134 | use EntityTrait; |
| 135 | + use FloatTrait; |
132 | 136 | use IDTrait; |
133 | 137 | use IDRefTrait; |
134 | 138 | use IDRefsTrait; |
|
0 commit comments