1 | <?php |
||
27 | final class Exif implements ExifInterface |
||
28 | { |
||
29 | /** |
||
30 | * @var Aperture |
||
31 | */ |
||
32 | private $aperture; |
||
33 | |||
34 | /** |
||
35 | * @var Filename |
||
36 | */ |
||
37 | private $filename; |
||
38 | |||
39 | /** |
||
40 | * @var Filesize |
||
41 | */ |
||
42 | private $filesize; |
||
43 | |||
44 | /** |
||
45 | * @var MimeType |
||
46 | */ |
||
47 | private $mimeType; |
||
48 | |||
49 | /** |
||
50 | * {@inheritDoc} |
||
51 | */ |
||
52 | public function getAperture() |
||
56 | |||
57 | /** |
||
58 | * {@inheritDoc} |
||
59 | */ |
||
60 | public function withAperture(Aperture $aperture) |
||
67 | |||
68 | /** |
||
69 | * {@inheritDoc} |
||
70 | */ |
||
71 | public function getMimeType() |
||
75 | |||
76 | /** |
||
77 | * {@inheritDoc} |
||
78 | */ |
||
79 | public function withMimeType(MimeType $mimeType) |
||
86 | |||
87 | /** |
||
88 | * {@inheritDoc} |
||
89 | */ |
||
90 | public function getFilename() |
||
94 | |||
95 | /** |
||
96 | * {@inheritDoc} |
||
97 | */ |
||
98 | public function withFilename(Filename $filename) |
||
105 | |||
106 | /** |
||
107 | * {@inheritDoc} |
||
108 | */ |
||
109 | public function getFilesize() |
||
113 | |||
114 | /** |
||
115 | * {@inheritDoc} |
||
116 | */ |
||
117 | public function withFilesize(Filesize $filesize) |
||
124 | } |
||
125 |