1 | <?php |
||
31 | class Iptc implements IptcInterface |
||
32 | { |
||
33 | /** |
||
34 | * @var Caption |
||
35 | */ |
||
36 | protected $caption; |
||
37 | |||
38 | /** |
||
39 | * @var Copyright |
||
40 | */ |
||
41 | protected $copyright; |
||
42 | |||
43 | /** |
||
44 | * @var Credit |
||
45 | */ |
||
46 | protected $credit; |
||
47 | |||
48 | /** |
||
49 | * @var Headline |
||
50 | */ |
||
51 | protected $headline; |
||
52 | |||
53 | /** |
||
54 | * @var Jobtitle |
||
55 | */ |
||
56 | protected $jobtitle; |
||
57 | |||
58 | /** |
||
59 | * @var Source |
||
60 | */ |
||
61 | protected $source; |
||
62 | |||
63 | /** |
||
64 | * @var Title |
||
65 | */ |
||
66 | protected $title; |
||
67 | |||
68 | /** |
||
69 | * @var Collection |
||
70 | */ |
||
71 | protected $keywords; |
||
72 | |||
73 | /** |
||
74 | * {@inheritDoc} |
||
75 | */ |
||
76 | public function getHeadline() |
||
80 | |||
81 | /** |
||
82 | * {@inheritDoc} |
||
83 | */ |
||
84 | public function withHeadline(Headline $headline) |
||
91 | |||
92 | /** |
||
93 | * {@inheritDoc} |
||
94 | */ |
||
95 | public function getCredit() |
||
99 | |||
100 | /** |
||
101 | * {@inheritDoc} |
||
102 | */ |
||
103 | public function withCredit(Credit $credit) |
||
110 | |||
111 | /** |
||
112 | * {@inheritDoc} |
||
113 | */ |
||
114 | public function getCopyright() |
||
118 | |||
119 | /** |
||
120 | * {@inheritDoc} |
||
121 | */ |
||
122 | public function withCopyright(Copyright $copyright) |
||
129 | |||
130 | /** |
||
131 | * {@inheritDoc} |
||
132 | */ |
||
133 | public function getCaption() |
||
137 | |||
138 | /** |
||
139 | * {@inheritDoc} |
||
140 | */ |
||
141 | public function withCaption(Caption $caption) |
||
148 | |||
149 | /** |
||
150 | * {@inheritDoc} |
||
151 | */ |
||
152 | public function getTitle() |
||
156 | |||
157 | /** |
||
158 | * {@inheritDoc} |
||
159 | */ |
||
160 | public function withTitle(Title $title) |
||
167 | |||
168 | /** |
||
169 | * {@inheritDoc} |
||
170 | */ |
||
171 | public function getKeywords() |
||
175 | |||
176 | /** |
||
177 | * {@inheritDoc} |
||
178 | */ |
||
179 | public function withKeywords(Collection $keywords) |
||
186 | |||
187 | /** |
||
188 | * {@inheritDoc} |
||
189 | */ |
||
190 | public function getJobtitle() |
||
194 | |||
195 | /** |
||
196 | * {@inheritDoc} |
||
197 | */ |
||
198 | public function withJobtitle(Jobtitle $jobtitle) |
||
205 | |||
206 | /** |
||
207 | * {@inheritDoc} |
||
208 | */ |
||
209 | public function getSource() |
||
213 | |||
214 | /** |
||
215 | * {@inheritDoc} |
||
216 | */ |
||
217 | public function withSource(Source $source) |
||
224 | } |
||
225 |