| Total Complexity | 4 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | class AuthenticationExtensionsClient implements \JsonSerializable |
||
| 17 | { |
||
| 18 | private $name; |
||
| 19 | |||
| 20 | private $value; |
||
| 21 | |||
| 22 | public function __construct(string $name, $value) |
||
| 23 | { |
||
| 24 | $this->name = $name; |
||
| 25 | $this->value = $value; |
||
| 26 | } |
||
| 27 | |||
| 28 | public function name(): string |
||
| 29 | { |
||
| 30 | return $this->name; |
||
| 31 | } |
||
| 32 | |||
| 33 | public function value() |
||
| 34 | { |
||
| 35 | return $this->value; |
||
| 36 | } |
||
| 37 | |||
| 38 | public function jsonSerialize() |
||
| 41 | } |
||
| 42 | } |
||
| 43 |