| Total Complexity | 4 |
| Total Lines | 51 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 15 | class Metadata |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var ExifParser |
||
| 19 | */ |
||
| 20 | private $exif; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var XMPParser |
||
| 24 | */ |
||
| 25 | private $xmp; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var IPTCParser |
||
| 29 | */ |
||
| 30 | private $iptc; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Metadata constructor. |
||
| 34 | * @param FileObjectInterface $file |
||
| 35 | * @throws ModuleNotFoundException |
||
| 36 | */ |
||
| 37 | public function __construct(FileObjectInterface $file) |
||
| 42 | } |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @return ExifParser |
||
| 46 | */ |
||
| 47 | public function getExif() |
||
| 50 | } |
||
| 51 | |||
| 52 | /** |
||
| 53 | * @return XMPParser |
||
| 54 | */ |
||
| 55 | public function getXMP() |
||
| 58 | } |
||
| 59 | |||
| 60 | /** |
||
| 61 | * @return IPTCParser |
||
| 62 | */ |
||
| 63 | public function getIPTC() |
||
| 68 |