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 | 63 |
| Duplicated Lines | 0 % |
| Changes | 3 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 15 | class SolrCore extends \TYPO3\CMS\Extbase\DomainObject\AbstractValueObject |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var int |
||
| 19 | */ |
||
| 20 | protected $pid; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var string |
||
| 24 | */ |
||
| 25 | protected $label; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var string |
||
| 29 | */ |
||
| 30 | protected $indexName; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @return string |
||
| 34 | */ |
||
| 35 | public function getPid(): int |
||
| 36 | { |
||
| 37 | return $this->pid; |
||
| 38 | } |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @param string $pid |
||
| 42 | */ |
||
| 43 | public function setPid(int $pid): void |
||
| 44 | { |
||
| 45 | $this->pid = $pid; |
||
| 46 | } |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @return string |
||
| 50 | */ |
||
| 51 | public function getLabel(): string |
||
| 52 | { |
||
| 53 | return $this->label; |
||
| 54 | } |
||
| 55 | |||
| 56 | /** |
||
| 57 | * @param string $label |
||
| 58 | */ |
||
| 59 | public function setLabel(string $label): void |
||
| 60 | { |
||
| 61 | $this->label = $label; |
||
| 62 | } |
||
| 63 | |||
| 64 | /** |
||
| 65 | * @return string |
||
| 66 | */ |
||
| 67 | public function getIndexName(): string |
||
| 68 | { |
||
| 69 | return $this->indexName; |
||
| 70 | } |
||
| 71 | |||
| 72 | /** |
||
| 73 | * @param string $indexName |
||
| 74 | */ |
||
| 75 | public function setIndexName(string $indexName): void |
||
| 78 | } |
||
| 79 | } |
||
| 80 |