Total Complexity | 1 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
5 | class Videos extends Category |
||
6 | { |
||
7 | const FORMAT_DVD = 'DVD'; |
||
8 | const FORMAT_LASER_DISC = 'Laser Disc'; |
||
9 | const FORMAT_VHS = 'VHS'; |
||
10 | const FORMAT_DOWNLOADABLE = 'Downloadable'; |
||
11 | const FORMAT_STREAMING = 'Streaming'; |
||
12 | |||
13 | protected $requiredAttributes = [ |
||
14 | 'Format' |
||
15 | ]; |
||
16 | |||
17 | public function format(string $format) |
||
21 | } |
||
22 | } |