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 | 47 |
Duplicated Lines | 0 % |
Changes | 4 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
15 | class SolrCore extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity |
||
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 getLabel(): string |
||
36 | { |
||
37 | return $this->label; |
||
38 | } |
||
39 | |||
40 | /** |
||
41 | * @param string $label |
||
42 | */ |
||
43 | public function setLabel(string $label): void |
||
44 | { |
||
45 | $this->label = $label; |
||
46 | } |
||
47 | |||
48 | /** |
||
49 | * @return string |
||
50 | */ |
||
51 | public function getIndexName(): string |
||
52 | { |
||
53 | return $this->indexName; |
||
54 | } |
||
55 | |||
56 | /** |
||
57 | * @param string $indexName |
||
58 | */ |
||
59 | public function setIndexName(string $indexName): void |
||
62 | } |
||
63 | } |
||
64 |