| Total Complexity | 5 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | class AttestationStatement |
||
| 19 | { |
||
| 20 | private $fmt; |
||
| 21 | |||
| 22 | private $attStmt; |
||
| 23 | |||
| 24 | public function __construct(string $fmt, array $attStmt) |
||
| 25 | { |
||
| 26 | $this->fmt = $fmt; |
||
| 27 | $this->attStmt = $attStmt; |
||
| 28 | } |
||
| 29 | |||
| 30 | public function getFmt(): string |
||
| 33 | } |
||
| 34 | |||
| 35 | public function getAttStmt(): array |
||
| 36 | { |
||
| 37 | return $this->attStmt; |
||
| 38 | } |
||
| 39 | |||
| 40 | public function has(string $key): bool |
||
| 43 | } |
||
| 44 | |||
| 45 | public function get(string $key) |
||
| 50 | } |
||
| 51 | } |
||
| 52 |