| 1 | <?php |
||
| 25 | class VideoFile { |
||
| 26 | |||
| 27 | use HeightTrait; |
||
| 28 | use IdTrait; |
||
| 29 | use LinkTrait; |
||
| 30 | use WidthTrait; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * File type. |
||
| 34 | * |
||
| 35 | * @var string |
||
| 36 | */ |
||
| 37 | private $fileType; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Quality. |
||
| 41 | * |
||
| 42 | * @var string |
||
| 43 | */ |
||
| 44 | private $quality; |
||
| 45 | |||
| 46 | /** |
||
| 47 | * Get the file type. |
||
| 48 | * |
||
| 49 | * @return string Returns the file type. |
||
| 50 | */ |
||
| 51 | public function getFileType() { |
||
| 54 | |||
| 55 | /** |
||
| 56 | * Get the quality. |
||
| 57 | * |
||
| 58 | * @return string Returns the quality. |
||
| 59 | */ |
||
| 60 | public function getQuality() { |
||
| 63 | |||
| 64 | /** |
||
| 65 | * Set the file type. |
||
| 66 | * |
||
| 67 | * @param string $fileType The file type. |
||
| 68 | * @return VideoFile Returns this video file. |
||
| 69 | */ |
||
| 70 | public function setFileType($fileType) { |
||
| 74 | |||
| 75 | /** |
||
| 76 | * Set the quality. |
||
| 77 | * |
||
| 78 | * @param string $quality Returns the quality. |
||
| 79 | * @return VideoFile Returns this video file. |
||
| 80 | */ |
||
| 81 | public function setQuality($quality) { |
||
| 85 | |||
| 86 | } |
||
| 87 |