1 | <?php |
||
22 | class PhotoResponse extends AbstractResponse { |
||
23 | |||
24 | /** |
||
25 | * Get the photo. |
||
26 | * |
||
27 | * @return Photo|null Returns the photo. |
||
28 | */ |
||
29 | public function getPhoto(): ?Photo { |
||
33 | |||
34 | /** |
||
35 | * Set the photo. |
||
36 | * |
||
37 | * @param Photo $photo The photo. |
||
38 | * @return PhotoResponse Returns this photo response. |
||
39 | */ |
||
40 | public function setPhoto(Photo $photo): PhotoResponse { |
||
43 | } |
||
44 |