diff --git a/src/Zend/Media/Id3/Frame/Tcmp.php b/src/Zend/Media/Id3/Frame/Tcmp.php new file mode 100644 index 0000000..368c0cd --- /dev/null +++ b/src/Zend/Media/Id3/Frame/Tcmp.php @@ -0,0 +1,40 @@ + + * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) + * @license http://framework.zend.com/license/new-bsd New BSD License + * @version $Id$ + */ +final class Zend_Media_Id3_Frame_Tcmp extends Zend_Media_Id3_NumberFrame +{} diff --git a/src/Zend/Media/Id3/Frame/Tso2.php b/src/Zend/Media/Id3/Frame/Tso2.php new file mode 100644 index 0000000..6509977 --- /dev/null +++ b/src/Zend/Media/Id3/Frame/Tso2.php @@ -0,0 +1,40 @@ + + * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) + * @license http://framework.zend.com/license/new-bsd New BSD License + * @version $Id$ + */ +final class Zend_Media_Id3_Frame_Tso2 extends Zend_Media_Id3_TextFrame +{} diff --git a/src/Zend/Media/Id3/Frame/Tsoc.php b/src/Zend/Media/Id3/Frame/Tsoc.php new file mode 100644 index 0000000..d74c26d --- /dev/null +++ b/src/Zend/Media/Id3/Frame/Tsoc.php @@ -0,0 +1,40 @@ + + * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) + * @license http://framework.zend.com/license/new-bsd New BSD License + * @version $Id$ + */ +final class Zend_Media_Id3_Frame_Tsoc extends Zend_Media_Id3_TextFrame +{} diff --git a/src/Zend/Media/Id3/TextFrame.php b/src/Zend/Media/Id3/TextFrame.php index e189f13..53776ac 100644 --- a/src/Zend/Media/Id3/TextFrame.php +++ b/src/Zend/Media/Id3/TextFrame.php @@ -100,7 +100,7 @@ public function __construct($reader = null, &$options = array()) * character encoding specified with the encoding option. See * {@link Zend_Media_Id3v2} for details. This method returns that character * encoding, or any value set after read, translated into a string form - * regarless if it was set using a {@link Zend_Media_Id3_Encoding} constant + * regardless if it was set using a {@link Zend_Media_Id3_Encoding} constant * or a string. * * @return integer @@ -137,7 +137,7 @@ public function setEncoding($encoding) */ public function getText() { - return $this->_text[0]; + return $this->_text[0]; } /** @@ -147,7 +147,7 @@ public function getText() */ public function getTexts() { - return $this->_text; + return $this->_text; } /**