for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace EWW\Dpf\Domain\Model;
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
* The TYPO3 project - inspiring people to share!
*/
/**
* File
class TransformationFile extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
{
* title
* @var string
protected $title = '';
* label
protected $label = '';
* image
* @var \TYPO3\CMS\Extbase\Domain\Model\FileReference
protected $file = NULL;
* @return string
public function getTitle(): string
return $this->title;
}
* @param string $title
public function setTitle(string $title)
$this->title = $title;
public function getLabel(): string
return $this->label;
* @param string $label
public function setLabel(string $label)
$this->label = $label;
* @return \TYPO3\CMS\Extbase\Domain\Model\FileReference
public function getFile(): \TYPO3\CMS\Extbase\Domain\Model\FileReference
return $this->file;
* @param \TYPO3\CMS\Extbase\Domain\Model\FileReference $file
public function setFile(\TYPO3\CMS\Extbase\Domain\Model\FileReference $file)
$this->file = $file;