| Total Complexity | 3 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | class AttestationStatementSupportManager |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var AttestationStatementSupport[] |
||
| 22 | */ |
||
| 23 | private $attestationStatementSupports = []; |
||
| 24 | |||
| 25 | public function add(AttestationStatementSupport $attestationStatementSupport) |
||
| 28 | } |
||
| 29 | |||
| 30 | public function has(string $name): bool |
||
| 33 | } |
||
| 34 | |||
| 35 | public function get(string $name): AttestationStatementSupport |
||
| 42 |