| Total Complexity | 3 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| 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 | 7 | public function __construct($data) |
|
| 27 | 7 | } |
|
| 28 | |||
| 29 | /** |
||
| 30 | * @inheritdoc |
||
| 31 | */ |
||
| 32 | 7 | public function getMethod(): string |
|
| 35 | } |
||
| 36 | |||
| 37 | 5 | public function getData() |
|
| 42 |