| 1 | <?php |
||
| 16 | class ScheduledMediaSegment extends MediaSegment |
||
| 17 | { |
||
| 18 | protected $program; |
||
| 19 | |||
| 20 | protected $channel; |
||
| 21 | |||
| 22 | protected $startsAt; |
||
| 23 | |||
| 24 | protected $endsAt; |
||
| 25 | |||
| 26 | public function __construct( |
||
| 42 | |||
| 43 | public function getProgram() |
||
| 47 | |||
| 48 | public function getChannel() |
||
| 52 | |||
| 53 | public function getStartsAt() |
||
| 57 | |||
| 58 | public function getEndsAt() |
||
| 62 | } |
||
| 63 |