We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| Total Complexity | 6 |
| Total Lines | 61 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | class Basket extends \TYPO3\CMS\Extbase\DomainObject\AbstractValueObject |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var string |
||
| 19 | */ |
||
| 20 | protected $label; |
||
| 21 | /** |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | protected $sessionId; |
||
| 25 | /** |
||
| 26 | * @var string|null |
||
| 27 | */ |
||
| 28 | protected $docIds; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @return string |
||
| 32 | */ |
||
| 33 | public function getLabel(): string |
||
| 34 | { |
||
| 35 | return $this->label; |
||
| 36 | } |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @param string $label |
||
| 40 | */ |
||
| 41 | public function setLabel(string $label): void |
||
| 44 | } |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @return string |
||
| 48 | */ |
||
| 49 | public function getSessionId(): string |
||
| 50 | { |
||
| 51 | return $this->session_id; |
||
| 52 | } |
||
| 53 | |||
| 54 | /** |
||
| 55 | * @param string $session_id |
||
| 56 | */ |
||
| 57 | public function setSessionId(string $session_id): void |
||
| 58 | { |
||
| 59 | $this->session_id = $session_id; |
||
|
|
|||
| 60 | } |
||
| 61 | |||
| 62 | /** |
||
| 63 | * @return string|null |
||
| 64 | */ |
||
| 65 | public function getDocIds(): ?string |
||
| 68 | } |
||
| 69 | |||
| 70 | /** |
||
| 71 | * @param string|null $docIds |
||
| 72 | */ |
||
| 73 | public function setDocIds(?string $docIds): void |
||
| 79 | } |