| Total Complexity | 3 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | readonly class OAuth2Badge implements BadgeInterface |
||
| 12 | { |
||
| 13 | public function __construct(private string $authentication) |
||
| 15 | |||
| 16 | public function getAuthentication(): string |
||
| 17 | { |
||
| 18 | return $this->authentication; |
||
| 19 | } |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @inheritDoc |
||
| 23 | */ |
||
| 24 | public function isResolved(): bool |
||
| 27 | } |
||
| 28 | } |
||
| 29 |