| Total Complexity | 4 |
| Total Lines | 48 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class PagedResult |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @JMS\SerializedName("paging") |
||
| 16 | * @JMS\Type("DMT\WebservicesNl\Client\Model\ResultInfo") |
||
| 17 | * @JMS\XmlElement(cdata=false) |
||
| 18 | * |
||
| 19 | * @var ResultInfo |
||
| 20 | */ |
||
| 21 | protected $paging; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * The JMS annotation definitions will be set in concrete class. |
||
| 25 | * |
||
| 26 | * @var array |
||
| 27 | */ |
||
| 28 | protected $results; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @return ResultInfo |
||
| 32 | */ |
||
| 33 | 2 | public function getPaging(): ?ResultInfo |
|
| 36 | } |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @param ResultInfo $paging |
||
| 40 | */ |
||
| 41 | 2 | public function setPaging(ResultInfo $paging): void |
|
| 44 | 2 | } |
|
| 45 | |||
| 46 | /** |
||
| 47 | * @return array |
||
| 48 | */ |
||
| 49 | 2 | public function getResults(): ?array |
|
| 52 | } |
||
| 53 | |||
| 54 | /** |
||
| 55 | * @param array $results |
||
| 56 | */ |
||
| 57 | 2 | public function setResults(array $results): void |
|
| 62 |