| Total Complexity | 6 |
| Total Lines | 63 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | class DepositLicense extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @var string |
||
| 24 | */ |
||
| 25 | protected $uri; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var string |
||
| 29 | */ |
||
| 30 | protected $title; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @var string |
||
| 34 | */ |
||
| 35 | protected $text; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @return string |
||
| 39 | */ |
||
| 40 | public function getUri(): string |
||
| 41 | { |
||
| 42 | return $this->uri; |
||
| 43 | } |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @param string $uri |
||
| 47 | */ |
||
| 48 | public function setUri(string $uri): void |
||
| 49 | { |
||
| 50 | $this->uri = $uri; |
||
| 51 | } |
||
| 52 | |||
| 53 | /** |
||
| 54 | * @return string |
||
| 55 | */ |
||
| 56 | public function getTitle(): string |
||
| 57 | { |
||
| 58 | return $this->title; |
||
| 59 | } |
||
| 60 | |||
| 61 | /** |
||
| 62 | * @param string $title |
||
| 63 | */ |
||
| 64 | public function setTitle(string $title): void |
||
| 65 | { |
||
| 66 | $this->title = $title; |
||
| 67 | } |
||
| 68 | |||
| 69 | /** |
||
| 70 | * @return string |
||
| 71 | */ |
||
| 72 | public function getText(): string |
||
| 75 | } |
||
| 76 | |||
| 77 | /** |
||
| 78 | * @param string $text |
||
| 79 | */ |
||
| 80 | public function setText(string $text): void |
||
| 83 | } |
||
| 84 | |||
| 85 | } |
||
| 86 |