Total Complexity | 3 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
16 | class AuthenticationExtensionsClient |
||
17 | { |
||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | private $name; |
||
22 | |||
23 | /** |
||
24 | * @var mixed |
||
25 | */ |
||
26 | private $value; |
||
27 | |||
28 | /** |
||
29 | * AuthenticationExtensionsClient constructor. |
||
30 | * |
||
31 | * @param string $name |
||
32 | * @param mixed $value |
||
33 | */ |
||
34 | public function __construct(string $name, $value) |
||
38 | } |
||
39 | |||
40 | /** |
||
41 | * @return string |
||
42 | */ |
||
43 | public function getName(): string |
||
46 | } |
||
47 | |||
48 | /** |
||
49 | * @return mixed |
||
50 | */ |
||
51 | public function getValue() |
||
56 |