| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | class UpDownResult |
||
| 18 | { |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @var array |
||
| 22 | */ |
||
| 23 | protected $data = []; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * UpDownResult constructor. |
||
| 27 | * |
||
| 28 | * @param array $data |
||
| 29 | */ |
||
| 30 | public function __construct(array $data = []) |
||
| 31 | { |
||
| 32 | |||
| 33 | $this->data = $data; |
||
| 34 | } |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @return array |
||
| 38 | */ |
||
| 39 | public function getData(): array { |
||
| 41 | } |
||
| 42 | } |