| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 6 | class ResponseMetadata extends AbstractModel |
||
| 7 | { |
||
| 8 | |||
| 9 | protected $nextCursor; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @return mixed |
||
| 13 | */ |
||
| 14 | public function getNextCursor() |
||
| 15 | { |
||
| 16 | return $this->nextCursor; |
||
| 17 | } |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param mixed $nextCursor |
||
| 21 | */ |
||
| 22 | public function setNextCursor($nextCursor): void |
||
| 25 | } |
||
| 26 | |||
| 27 | } |