We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| Total Complexity | 4 |
| Total Lines | 42 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | class SolrCore extends \TYPO3\CMS\Extbase\DomainObject\AbstractValueObject |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var string |
||
| 19 | */ |
||
| 20 | protected $label; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var string |
||
| 24 | */ |
||
| 25 | protected $indexName; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @return string |
||
| 29 | */ |
||
| 30 | public function getLabel(): string |
||
| 31 | { |
||
| 32 | return $this->label; |
||
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @param string $label |
||
| 37 | */ |
||
| 38 | public function setLabel(string $label): void |
||
| 39 | { |
||
| 40 | $this->label = $label; |
||
| 41 | } |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @return string |
||
| 45 | */ |
||
| 46 | public function getIndexName(): string |
||
| 47 | { |
||
| 48 | return $this->indexName; |
||
| 49 | } |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @param string $indexName |
||
| 53 | */ |
||
| 54 | public function setIndexName(string $indexName): void |
||
| 57 | } |
||
| 58 | |||
| 59 | } |