Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class Data implements \WebServCo\Framework\Interfaces\JsonInterface |
||
12 | { |
||
13 | |||
14 | /** |
||
15 | * Data |
||
16 | * |
||
17 | * @var array<mixed> |
||
18 | */ |
||
19 | protected array $data; |
||
20 | |||
21 | /** |
||
22 | * @param array<mixed> $data |
||
23 | */ |
||
24 | public function __construct(array $data = []) |
||
25 | { |
||
26 | $this->data = $data; |
||
27 | } |
||
28 | |||
29 | public function toJson(): string |
||
32 | } |
||
33 | } |
||
34 |