| 1 | <?php |
||
| 5 | class UserProfilePhotos extends AbstractEntity |
||
| 6 | { |
||
| 7 | const ENTITY_TYPE = 'UserProfilePhotos'; |
||
| 8 | |||
| 9 | protected $total_count; |
||
| 10 | |||
| 11 | protected $photos; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @return mixed |
||
| 15 | */ |
||
| 16 | public function getTotalCount() |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param mixed $total_count |
||
| 23 | */ |
||
| 24 | public function setTotalCount($total_count) |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param array $photos |
||
| 31 | * |
||
| 32 | * @return $this |
||
| 33 | */ |
||
| 34 | public function setPhotos($photos) |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @return mixed |
||
| 51 | */ |
||
| 52 | public function getPhotos() |
||
| 56 | |||
| 57 | public function getPhotoByOffset($offset = 0) |
||
| 61 | } |