We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| Total Complexity | 12 |
| Total Lines | 121 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | class Structure extends \TYPO3\CMS\Extbase\DomainObject\AbstractValueObject |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var int |
||
| 19 | */ |
||
| 20 | protected $toplevel; |
||
| 21 | /** |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | protected $label; |
||
| 25 | /** |
||
| 26 | * @var string |
||
| 27 | */ |
||
| 28 | protected $index_name; |
||
| 29 | /** |
||
| 30 | * @var string |
||
| 31 | */ |
||
| 32 | protected $oai_name; |
||
| 33 | /** |
||
| 34 | * @var int |
||
| 35 | */ |
||
| 36 | protected $thumbnail; |
||
| 37 | /** |
||
| 38 | * @var int |
||
| 39 | */ |
||
| 40 | protected $status; |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @return int |
||
| 44 | */ |
||
| 45 | public function getToplevel(): int |
||
| 46 | { |
||
| 47 | return $this->toplevel; |
||
| 48 | } |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @param int $toplevel |
||
| 52 | */ |
||
| 53 | public function setToplevel(int $toplevel): void |
||
| 54 | { |
||
| 55 | $this->toplevel = $toplevel; |
||
| 56 | } |
||
| 57 | |||
| 58 | /** |
||
| 59 | * @return string |
||
| 60 | */ |
||
| 61 | public function getLabel(): string |
||
| 62 | { |
||
| 63 | return $this->label; |
||
| 64 | } |
||
| 65 | |||
| 66 | /** |
||
| 67 | * @param string $label |
||
| 68 | */ |
||
| 69 | public function setLabel(string $label): void |
||
| 70 | { |
||
| 71 | $this->label = $label; |
||
| 72 | } |
||
| 73 | |||
| 74 | /** |
||
| 75 | * @return string |
||
| 76 | */ |
||
| 77 | public function getIndexName(): string |
||
| 78 | { |
||
| 79 | return $this->index_name; |
||
| 80 | } |
||
| 81 | |||
| 82 | /** |
||
| 83 | * @param string $index_name |
||
| 84 | */ |
||
| 85 | public function setIndexName(string $index_name): void |
||
| 86 | { |
||
| 87 | $this->index_name = $index_name; |
||
| 88 | } |
||
| 89 | |||
| 90 | /** |
||
| 91 | * @return string |
||
| 92 | */ |
||
| 93 | public function getOaiName(): string |
||
| 94 | { |
||
| 95 | return $this->oai_name; |
||
| 96 | } |
||
| 97 | |||
| 98 | /** |
||
| 99 | * @param string $oai_name |
||
| 100 | */ |
||
| 101 | public function setOaiName(string $oai_name): void |
||
| 102 | { |
||
| 103 | $this->oai_name = $oai_name; |
||
| 104 | } |
||
| 105 | |||
| 106 | /** |
||
| 107 | * @return int |
||
| 108 | */ |
||
| 109 | public function getThumbnail(): int |
||
| 112 | } |
||
| 113 | |||
| 114 | /** |
||
| 115 | * @param int $thumbnail |
||
| 116 | */ |
||
| 117 | public function setThumbnail(int $thumbnail): void |
||
| 120 | } |
||
| 121 | |||
| 122 | /** |
||
| 123 | * @return int |
||
| 124 | */ |
||
| 125 | public function getStatus(): int |
||
| 126 | { |
||
| 127 | return $this->status; |
||
| 128 | } |
||
| 129 | |||
| 130 | /** |
||
| 131 | * @param int $status |
||
| 132 | */ |
||
| 133 | public function setStatus(int $status): void |
||
| 136 | } |
||
| 137 | |||
| 138 | |||
| 139 | |||
| 140 | } |