| 1 | <?php |
||
| 16 | abstract class AbstractMediaInformation implements MediaInformationInterface { |
||
| 17 | |||
| 18 | protected $title; |
||
| 19 | |||
| 20 | protected $mimeType; |
||
| 21 | |||
| 22 | protected $filePath; |
||
| 23 | |||
| 24 | protected $fileSize; |
||
| 25 | |||
| 26 | protected $lastModified; |
||
| 27 | |||
| 28 | |||
| 29 | public function getTitle(){ |
||
| 32 | |||
| 33 | public function setTitle($title){ |
||
| 37 | |||
| 38 | public function getMimeType(){ |
||
| 41 | |||
| 42 | public function setMimeType($mimeType){ |
||
| 46 | |||
| 47 | public function getFilePath(){ |
||
| 50 | |||
| 51 | public function setFilePath($filePath){ |
||
| 55 | |||
| 56 | public function getFileSize(){ |
||
| 59 | |||
| 60 | public function setFileSize($fileSize){ |
||
| 64 | |||
| 65 | public function getLastModified(){ |
||
| 68 | |||
| 69 | public function setLastModified(\DateTime $lastModified){ |
||
| 73 | } |
||
| 74 |