We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| Total Complexity | 8 |
| Total Lines | 85 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | class Basket extends \TYPO3\CMS\Extbase\DomainObject\AbstractValueObject |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var string|null |
||
| 19 | */ |
||
| 20 | protected $docIds; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var int |
||
| 24 | */ |
||
| 25 | protected $feUserId; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var string |
||
| 29 | */ |
||
| 30 | protected $label; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @var string |
||
| 34 | */ |
||
| 35 | protected $sessionId; |
||
| 36 | |||
| 37 | |||
| 38 | /** |
||
| 39 | * @return string|null |
||
| 40 | */ |
||
| 41 | public function getDocIds(): ?string |
||
| 42 | { |
||
| 43 | return $this->docIds; |
||
| 44 | } |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @param string|null $docIds |
||
| 48 | */ |
||
| 49 | public function setDocIds(?string $docIds): void |
||
| 50 | { |
||
| 51 | $this->docIds = $docIds; |
||
| 52 | } |
||
| 53 | |||
| 54 | /** |
||
| 55 | * @return int |
||
| 56 | */ |
||
| 57 | public function getFeUserId(): int |
||
| 58 | { |
||
| 59 | return $this->feUserId; |
||
| 60 | } |
||
| 61 | |||
| 62 | /** |
||
| 63 | * @param int $feUserId |
||
| 64 | */ |
||
| 65 | public function setFeUserId(int $feUserId): void |
||
| 66 | { |
||
| 67 | $this->feUserId = $feUserId; |
||
| 68 | } |
||
| 69 | |||
| 70 | /** |
||
| 71 | * @return string |
||
| 72 | */ |
||
| 73 | public function getLabel(): string |
||
| 74 | { |
||
| 75 | return $this->label; |
||
| 76 | } |
||
| 77 | |||
| 78 | /** |
||
| 79 | * @param string $label |
||
| 80 | */ |
||
| 81 | public function setLabel(string $label): void |
||
| 84 | } |
||
| 85 | |||
| 86 | /** |
||
| 87 | * @return string |
||
| 88 | */ |
||
| 89 | public function getSessionId(): string |
||
| 92 | } |
||
| 93 | |||
| 94 | /** |
||
| 95 | * @param string $sessionId |
||
| 96 | */ |
||
| 97 | public function setSessionId(string $sessionId): void |
||
| 100 | } |
||
| 101 | |||
| 102 | } |
||
| 103 |