| Total Complexity | 5 |
| Total Lines | 47 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class Model implements \JsonSerializable |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @return string |
||
| 16 | */ |
||
| 17 | public function getSeries(): string |
||
| 18 | { |
||
| 19 | return $this->series; |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param string $series |
||
| 24 | */ |
||
| 25 | public function setSeries(string $series) |
||
| 28 | } |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @return string |
||
| 32 | */ |
||
| 33 | public function getModel(): string |
||
| 34 | { |
||
| 35 | return $this->model; |
||
| 36 | } |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @param string $model |
||
| 40 | */ |
||
| 41 | public function setModel(string $model) |
||
| 44 | } |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @var string |
||
| 48 | */ |
||
| 49 | private $series = ''; |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @var string |
||
| 53 | */ |
||
| 54 | private $model = ''; |
||
| 55 | |||
| 56 | public function jsonSerialize() |
||
| 59 | } |
||
| 60 | } |