| 1 | <?php |
||
| 7 | class Auction |
||
| 8 | { |
||
| 9 | const MAX_PHOTOS = 8; |
||
| 10 | |||
| 11 | protected $fields = []; |
||
| 12 | |||
| 13 | protected $photos = []; |
||
| 14 | |||
| 15 | public function __construct(array $fields = []) |
||
| 19 | |||
| 20 | |||
| 21 | public function setPhotos(array $photos) |
||
| 31 | |||
| 32 | |||
| 33 | public function toApiRepresentation() |
||
| 47 | |||
| 48 | |||
| 49 | public function fromApiRepresentation(array $fields) |
||
| 60 | |||
| 61 | |||
| 62 | protected function addPhotoFields(array& $fields) |
||
| 79 | |||
| 80 | } |
||
| 81 |