| Total Complexity | 2 | 
| Total Lines | 24 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 19 | final class AuthnContextClassRef extends AbstractSamlElement | ||
| 20 | { | ||
| 21 | use XMLStringElementTrait; | ||
|  | |||
| 22 | |||
| 23 | |||
| 24 | /** | ||
| 25 | * @param string $content | ||
| 26 | */ | ||
| 27 | public function __construct(string $content) | ||
| 28 |     { | ||
| 29 | $this->setContent($content); | ||
| 30 | } | ||
| 31 | |||
| 32 | |||
| 33 | /** | ||
| 34 | * Validate the content of the element. | ||
| 35 | * | ||
| 36 | * @param string $content The value to go in the XML textContent | ||
| 37 | * @throws \Exception on failure | ||
| 38 | * @return void | ||
| 39 | */ | ||
| 40 | protected function validateContent(string $content): void | ||
| 43 | } | ||
| 44 | } | ||
| 45 |