Total Complexity | 4 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Coverage | 83.33% |
Changes | 0 |
1 | <?php |
||
10 | 1 | class Client implements IClient |
|
11 | { |
||
12 | |||
13 | 1 | public function __construct( |
|
14 | private readonly string|int $id, |
||
15 | #[\SensitiveParameter] private readonly string $secret, |
||
16 | private readonly string $redirectUrl, |
||
17 | ) |
||
18 | { |
||
19 | 1 | } |
|
20 | |||
21 | public function getId(): string|int |
||
24 | } |
||
25 | |||
26 | public function getRedirectUrl(): string |
||
29 | } |
||
30 | |||
31 | public function getSecret(): string |
||
36 |