for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the Metadata package.
*
* @author Daniel Schröder <[email protected]>
*/
namespace GravityMedia\Metadata\ID3v2\Frame;
use GravityMedia\Metadata\ID3v2\Frame;
* ID3v2 text frame class.
* @package GravityMedia\Metadata
class TextFrame extends Frame
{
* @var string[]
protected $text;
* Get text.
* @return string[]
public function getText()
return $this->text;
}
* Set text.
* @param string[] $text
* @return $this
public function setText(array $text)
$this->text = $text;
return $this;