1 | <?php |
||
20 | class Photo extends AbstractMedia { |
||
21 | |||
22 | /** |
||
23 | * Photographer. |
||
24 | * |
||
25 | * @var string |
||
26 | */ |
||
27 | private $photographer; |
||
28 | |||
29 | /** |
||
30 | * Photographer URL. |
||
31 | * |
||
32 | * @var string |
||
33 | */ |
||
34 | private $photographerUrl; |
||
35 | |||
36 | /** |
||
37 | * Source. |
||
38 | * |
||
39 | * @var Source |
||
40 | */ |
||
41 | private $src; |
||
42 | |||
43 | /** |
||
44 | * Get the photographer. |
||
45 | * |
||
46 | * @return string Returns the photographer. |
||
47 | */ |
||
48 | public function getPhotographer() { |
||
51 | |||
52 | /** |
||
53 | * Get the photographer URL. |
||
54 | * |
||
55 | * @return string Returns the photographer URL. |
||
56 | */ |
||
57 | public function getPhotographerUrl() { |
||
60 | |||
61 | /** |
||
62 | * Get the source. |
||
63 | * |
||
64 | * @return Source Returns the source. |
||
65 | */ |
||
66 | public function getSrc() { |
||
69 | |||
70 | /** |
||
71 | * Set the photographer. |
||
72 | * |
||
73 | * @param string $photographer The photographer. |
||
74 | * @return Photo Returns this photo. |
||
75 | */ |
||
76 | public function setPhotographer($photographer) { |
||
80 | |||
81 | /** |
||
82 | * Set the photographer URL. |
||
83 | * |
||
84 | * @param string $photographerUrl The photographer URL. |
||
85 | * @return Photo Returns this photo. |
||
86 | */ |
||
87 | public function setPhotographerUrl($photographerUrl) { |
||
91 | |||
92 | /** |
||
93 | * Set the source. |
||
94 | * |
||
95 | * @param Source|null $src The source. |
||
96 | * @return Photo Returns this photo. |
||
97 | */ |
||
98 | public function setSrc(Source $src = null) { |
||
102 | |||
103 | } |
||
104 |