| Total Complexity | 6 |
| Total Lines | 40 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | class AttestationStatement |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @var |
||
| 20 | */ |
||
| 21 | private $fmt; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @var array |
||
| 25 | */ |
||
| 26 | private $attStmt; |
||
| 27 | |||
| 28 | public function __construct($fmt, array $attStmt) |
||
| 29 | { |
||
| 30 | $this->fmt = $fmt; |
||
| 31 | $this->attStmt = $attStmt; |
||
| 32 | } |
||
| 33 | |||
| 34 | public function getFmt() |
||
| 37 | } |
||
| 38 | |||
| 39 | public function getAttStmt(): array |
||
| 40 | { |
||
| 41 | return $this->attStmt; |
||
| 42 | } |
||
| 43 | |||
| 44 | public function has(string $key): bool |
||
| 47 | } |
||
| 48 | |||
| 49 | public function get(string $key) |
||
| 56 | } |
||
| 57 | } |
||
| 58 |