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\Metadata;
* Metadata tag.
* @package GravityMedia\Metadata\Metadata
class Tag implements TagInterface
{
* @var string
protected $title;
protected $artist;
protected $album;
* @var int
protected $year;
protected $comment;
protected $track;
protected $genre;
* {@inheritdoc}
public function getTitle()
return $this->title;
}
* Set title.
* @param string $title The title.
* @return $this
public function setTitle($title)
$this->title = $title;
return $this;
public function getArtist()
return $this->artist;
* Set artist.
* @param string $artist The artist.
public function setArtist($artist)
$this->artist = $artist;
public function getAlbum()
return $this->album;
* Set album.
* @param string $album The album.
public function setAlbum($album)
$this->album = $album;
public function getYear()
return $this->year;
* Set year.
* @param int $year The year.
public function setYear($year)
$this->year = $year;
public function getComment()
return $this->comment;
* Set comment.
* @param string $comment The comment.
public function setComment($comment)
$this->comment = $comment;
public function getTrack()
return $this->track;
* Set track.
* @param int $track The track.
public function setTrack($track)
$this->track = $track;
public function getGenre()
return $this->genre;
* Set genre.
* @param string $genre The genre.
public function setGenre($genre)
$this->genre = $genre;