1 | <?php |
||
17 | class CommentFrame extends TextFrame |
||
18 | { |
||
19 | /** |
||
20 | * @var string |
||
21 | */ |
||
22 | private $language; |
||
23 | |||
24 | /** |
||
25 | * Create ID3v2 comment frame object. |
||
26 | * |
||
27 | * @param Stream $stream |
||
28 | */ |
||
29 | public function __construct(Stream $stream) |
||
33 | |||
34 | /** |
||
35 | * Read language. |
||
36 | * |
||
37 | * @return string |
||
38 | */ |
||
39 | public function readLanguage() |
||
50 | |||
51 | /** |
||
52 | * Get language. |
||
53 | * |
||
54 | * @return string |
||
55 | */ |
||
56 | public function getLanguage() |
||
64 | } |
||
65 |