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