| Total Complexity | 4 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | class SubjectConfirmationNotBefore implements SubjectConfirmationConstraintValidator |
||
| 16 | { |
||
| 17 | /** @var \Beste\Clock */ |
||
| 18 | private static Clock $clock; |
||
| 19 | |||
| 20 | |||
| 21 | /** |
||
| 22 | */ |
||
| 23 | public function __construct() |
||
| 24 | { |
||
| 25 | self::$clock = Utils::getContainer()->getClock(); |
||
| 26 | } |
||
| 27 | |||
| 28 | |||
| 29 | /** |
||
| 30 | * @param \SimpleSAML\SAML2\XML\saml\SubjectConfirmation $subjectConfirmation |
||
| 31 | * @param \SimpleSAML\SAML2\Assertion\Validation\Result $result |
||
| 32 | * |
||
| 33 | * @throws \SimpleSAML\Assert\AssertionFailedException if assertions are false |
||
| 34 | */ |
||
| 35 | public function validate( |
||
| 47 | } |
||
| 48 | } |
||
| 50 |