|
11 | 11 | * |
12 | 12 | * @package simplesamlphp/saml11 |
13 | 13 | * |
14 | | - * @method static void validDateTime(mixed $value, string $message = '', string $exception = '') |
15 | | - * @method static void validURI(mixed $value, string $message = '', string $exception = '') |
16 | | - * @method static void validEntityID(mixed $value, string $message = '', string $exception = '') |
17 | | - * @method static void nullOrValidDateTime(mixed $value, string $message = '', string $exception = '') |
18 | | - * @method static void nullOrValidURI(mixed $value, string $message = '', string $exception = '') |
19 | | - * @method static void nullOrValidEntityID(mixed $value, string $message = '', string $exception = '') |
20 | | - * @method static void allValidDateTime(mixed $value, string $message = '', string $exception = '') |
21 | | - * @method static void allValidURI(mixed $value, string $message = '', string $exception = '') |
22 | | - * @method static void allValidEntityID(mixed $value, string $message = '', string $exception = '') |
| 14 | + * @method static void validSAMLAnyURI(mixed $value, string $message = '', string $exception = '') |
| 15 | + * @method static void validSAMLDateTime(mixed $value, string $message = '', string $exception = '') |
| 16 | + * @method static void validSAMLString(mixed $value, string $message = '', string $exception = '') |
| 17 | + * @method static void nullOrValidSAMLAnyURI(mixed $value, string $message = '', string $exception = '') |
| 18 | + * @method static void nullOrValidSAMLDateTime(mixed $value, string $message = '', string $exception = '') |
| 19 | + * @method static void nullOrValidSAMLString(mixed $value, string $message = '', string $exception = '') |
| 20 | + * @method static void allValidSAMLAnyURI(mixed $value, string $message = '', string $exception = '') |
| 21 | + * @method static void allValidSAMLDateTime(mixed $value, string $message = '', string $exception = '') |
| 22 | + * @method static void allValidSAMLString(mixed $value, string $message = '', string $exception = '') |
23 | 23 | */ |
24 | 24 | class Assert extends BaseAssert |
25 | 25 | { |
26 | | - use CustomAssertionTrait; |
| 26 | + use SAMLAnyURITrait; |
| 27 | + use SAMLDateTimeTrait; |
| 28 | + use SAMLStringTrait; |
27 | 29 | } |
0 commit comments