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;
* ID3v2 frame class.
* @package GravityMedia\Metadata
class Frame
{
* @var string
protected $name;
protected $content;
* Get name.
* @return string
public function getName()
return $this->name;
}
* Set name.
* @param string $name
* @return $this
public function setName($name)
$this->name = $name;
return $this;
* Get content.
public function getContent()
return $this->content;
* Set content.
* @param string $content
public function setContent($content)
$this->content = $content;