| Total Complexity | 2 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 5 | final class Issuer |
||
| 6 | { |
||
| 7 | private $userPoolId; |
||
| 8 | |||
| 9 | private $region; |
||
| 10 | |||
| 11 | 4 | public function __construct(string $userPoolId, string $region) |
|
| 12 | { |
||
| 13 | 4 | $this->userPoolId = $userPoolId; |
|
| 14 | 4 | $this->region = $region; |
|
| 15 | } |
||
| 16 | |||
| 17 | 4 | public function toString(): string |
|
| 22 | } |
||
| 23 | } |
||
| 24 |