| Total Complexity | 2 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | class Viewer extends \TYPO3\CMS\Extbase\DomainObject\AbstractValueObject |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * feUserUid |
||
| 24 | * |
||
| 25 | * @var int |
||
| 26 | */ |
||
| 27 | protected $feUserUid = 0; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Returns the feUserUid |
||
| 31 | * |
||
| 32 | * @return int $feUserUid |
||
| 33 | */ |
||
| 34 | public function getFeUserUid() |
||
| 35 | { |
||
| 36 | return $this->feUserUid; |
||
| 37 | } |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Sets the feUserUid |
||
| 41 | * |
||
| 42 | * @param int $feUserUid |
||
| 43 | * @return void |
||
| 44 | */ |
||
| 45 | public function setFeUserUid($feUserUid) |
||
| 48 | } |
||
| 49 | } |
||
| 50 |