for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Stinger Media Parser package.
*
* (c) Oliver Kotte <[email protected]>
* (c) Florian Meyer <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace StingerSoft\MediaParsingBundle\Parser\Information;
use StingerSoft\MediaParsingBundle\Parser\MediaInformationInterface;
abstract class AbstractMediaInformation implements MediaInformationInterface {
protected $title;
protected $mimeType;
protected $filePath;
protected $fileSize;
protected $lastModified;
public function getTitle(){
return $this->title;
}
public function setTitle($title){
$this->title = $title;
return $this;
public function getMimeType(){
return $this->mimeType;
public function setMimeType($mimeType){
$this->mimeType = $mimeType;
public function getFilePath(){
return $this->filePath;
public function setFilePath($filePath){
$this->filePath = $filePath;
public function getFileSize(){
return $this->fileSize;
public function setFileSize($fileSize){
$this->fileSize = $fileSize;
public function getLastModified(){
return $this->lastModified;
public function setLastModified(\DateTime $lastModified){
$this->lastModified = $lastModified;