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