1 | <?php |
||
28 | final class Exif implements ExifInterface |
||
29 | { |
||
30 | /** |
||
31 | * @var Aperture |
||
32 | */ |
||
33 | private $aperture; |
||
34 | |||
35 | /** |
||
36 | * @var Filename |
||
37 | */ |
||
38 | private $filename; |
||
39 | |||
40 | /** |
||
41 | * @var Filesize |
||
42 | */ |
||
43 | private $filesize; |
||
44 | |||
45 | /** |
||
46 | * @var Make |
||
47 | */ |
||
48 | private $make; |
||
49 | |||
50 | /** |
||
51 | * @var MimeType |
||
52 | */ |
||
53 | private $mimeType; |
||
54 | |||
55 | /** |
||
56 | * {@inheritDoc} |
||
57 | */ |
||
58 | public function getAperture() |
||
62 | |||
63 | /** |
||
64 | * {@inheritDoc} |
||
65 | */ |
||
66 | public function withAperture(Aperture $aperture) |
||
73 | |||
74 | /** |
||
75 | * {@inheritDoc} |
||
76 | */ |
||
77 | public function getMimeType() |
||
81 | |||
82 | /** |
||
83 | * {@inheritDoc} |
||
84 | */ |
||
85 | public function withMimeType(MimeType $mimeType) |
||
92 | |||
93 | /** |
||
94 | * {@inheritDoc} |
||
95 | */ |
||
96 | public function getFilename() |
||
100 | |||
101 | /** |
||
102 | * {@inheritDoc} |
||
103 | */ |
||
104 | public function withFilename(Filename $filename) |
||
111 | |||
112 | /** |
||
113 | * {@inheritDoc} |
||
114 | */ |
||
115 | public function getFilesize() |
||
119 | |||
120 | /** |
||
121 | * {@inheritDoc} |
||
122 | */ |
||
123 | public function withFilesize(Filesize $filesize) |
||
130 | |||
131 | /** |
||
132 | * {@inheritDoc} |
||
133 | */ |
||
134 | public function getMake() |
||
138 | |||
139 | /** |
||
140 | * {@inheritDoc} |
||
141 | */ |
||
142 | public function withMake(Make $make) |
||
149 | } |
||
150 |