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 picture frame class.
* @package GravityMedia\Metadata
class PictureFrame extends Frame
{
* @var string
protected $mimeType;
* @var int
protected $type;
protected $description;
protected $data;
* Get mime type.
* @return string
public function getMimeType()
return $this->mimeType;
}
* Set mime type.
* @param string $mimeType
* @return $this
public function setMimeType($mimeType)
$this->mimeType = $mimeType;
return $this;
* Get type.
* @return int
public function getType()
return $this->type;
* Set type.
* @param int $type
public function setType($type)
$this->type = $type;
* Get description.
public function getDescription()
return $this->description;
* Set description.
* @param string $description
public function setDescription($description)
$this->description = $description;
* Get data.
public function getData()
return $this->data;
* Set data.
* @param string $data
public function setData($data)
$this->data = $data;