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