Total Complexity | 1 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class DateTimeValue extends BaseDateTimeValue |
||
14 | { |
||
15 | // Lowercase p as opposed to the base-class to covert the timestamp to UTC as demanded by the SAML specifications |
||
16 | public const DATETIME_FORMAT = 'Y-m-d\\TH:i:sp'; |
||
17 | |||
18 | |||
19 | /** |
||
20 | * Validate the value. |
||
21 | * |
||
22 | * @param string $value |
||
23 | * @return void |
||
24 | */ |
||
25 | protected function validateValue(string $value): void |
||
31 |