1 | <?php |
||
26 | final class Exif implements ExifInterface |
||
27 | { |
||
28 | /** |
||
29 | * @var Aperture |
||
30 | */ |
||
31 | private $aperture; |
||
32 | |||
33 | /** |
||
34 | * @var Filename |
||
35 | */ |
||
36 | private $filename; |
||
37 | |||
38 | /** |
||
39 | * @var MimeType |
||
40 | */ |
||
41 | private $mimeType; |
||
42 | |||
43 | /** |
||
44 | * {@inheritDoc} |
||
45 | */ |
||
46 | public function getAperture() |
||
50 | |||
51 | /** |
||
52 | * {@inheritDoc} |
||
53 | */ |
||
54 | public function withAperture(Aperture $aperture) |
||
61 | |||
62 | /** |
||
63 | * {@inheritDoc} |
||
64 | */ |
||
65 | public function getMimeType() |
||
69 | |||
70 | /** |
||
71 | * {@inheritDoc} |
||
72 | */ |
||
73 | public function withMimeType(MimeType $mimeType) |
||
80 | |||
81 | /** |
||
82 | * {@inheritDoc} |
||
83 | */ |
||
84 | public function getFilename() |
||
88 | |||
89 | /** |
||
90 | * {@inheritDoc} |
||
91 | */ |
||
92 | public function withFilename(Filename $filename) |
||
99 | } |
||
100 |