| Total Complexity | 6 |
| Total Lines | 70 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | class TransformationFile extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity |
||
| 21 | { |
||
| 22 | |||
| 23 | /** |
||
| 24 | * title |
||
| 25 | * |
||
| 26 | * @var string |
||
| 27 | */ |
||
| 28 | protected $title = ''; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * label |
||
| 32 | * |
||
| 33 | * @var string |
||
| 34 | */ |
||
| 35 | protected $label = ''; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * image |
||
| 39 | * |
||
| 40 | * @var \TYPO3\CMS\Extbase\Domain\Model\FileReference |
||
| 41 | */ |
||
| 42 | protected $file = NULL; |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @return string |
||
| 46 | */ |
||
| 47 | public function getTitle(): string |
||
| 50 | } |
||
| 51 | |||
| 52 | /** |
||
| 53 | * @param string $title |
||
| 54 | */ |
||
| 55 | public function setTitle(string $title) |
||
| 56 | { |
||
| 57 | $this->title = $title; |
||
| 58 | } |
||
| 59 | |||
| 60 | /** |
||
| 61 | * @return string |
||
| 62 | */ |
||
| 63 | public function getLabel(): string |
||
| 64 | { |
||
| 65 | return $this->label; |
||
| 66 | } |
||
| 67 | |||
| 68 | /** |
||
| 69 | * @param string $label |
||
| 70 | */ |
||
| 71 | public function setLabel(string $label) |
||
| 74 | } |
||
| 75 | |||
| 76 | /** |
||
| 77 | * @return \TYPO3\CMS\Extbase\Domain\Model\FileReference |
||
| 78 | */ |
||
| 79 | public function getFile(): \TYPO3\CMS\Extbase\Domain\Model\FileReference |
||
| 80 | { |
||
| 81 | return $this->file; |
||
| 82 | } |
||
| 83 | |||
| 84 | /** |
||
| 85 | * @param \TYPO3\CMS\Extbase\Domain\Model\FileReference $file |
||
| 86 | */ |
||
| 87 | public function setFile(\TYPO3\CMS\Extbase\Domain\Model\FileReference $file) |
||
| 90 | } |
||
| 91 | |||
| 92 | |||
| 95 |