Total Complexity | 3 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
12 | class DataItem implements DataItemInterface |
||
13 | { |
||
14 | /** |
||
15 | * @var mixed |
||
16 | */ |
||
17 | protected $data; |
||
18 | |||
19 | /** |
||
20 | * DataItem constructor. |
||
21 | * |
||
22 | * @param mixed $data |
||
23 | */ |
||
24 | public function __construct($data) |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * @inheritdoc |
||
31 | */ |
||
32 | public function getMethod(): string |
||
35 | } |
||
36 | |||
37 | public function getData() |
||
42 |