1 | <?php |
||
24 | final class Exif implements ExifInterface |
||
25 | { |
||
26 | /** |
||
27 | * @var Aperture |
||
28 | */ |
||
29 | private $aperture; |
||
30 | |||
31 | /** |
||
32 | * @var MimeType |
||
33 | */ |
||
34 | private $mimeType; |
||
35 | |||
36 | /** |
||
37 | * {@inheritDoc} |
||
38 | */ |
||
39 | public function getAperture() |
||
43 | |||
44 | /** |
||
45 | * {@inheritDoc} |
||
46 | */ |
||
47 | public function withAperture(Aperture $aperture) |
||
54 | |||
55 | /** |
||
56 | * {@inheritDoc} |
||
57 | */ |
||
58 | public function getMimeType() |
||
62 | |||
63 | /** |
||
64 | * {@inheritDoc} |
||
65 | */ |
||
66 | public function withMimeType(MimeType $mimeType) |
||
73 | } |
||
74 |