Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — dev-extbase-fluid ( 0bcbe0...1d97ef )
by Alexander
04:00 queued 03:49
created

SolrCore::getPid()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
cc 1
eloc 1
c 1
b 1
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
1
<?php
2
3
/**
4
 * (c) Kitodo. Key to digital objects e.V. <[email protected]>
5
 *
6
 * This file is part of the Kitodo and TYPO3 projects.
7
 *
8
 * @license GNU General Public License version 3 or later.
9
 * For the full copyright and license information, please read the
10
 * LICENSE.txt file that was distributed with this source code.
11
 */
12
13
namespace Kitodo\Dlf\Domain\Model;
14
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
60
    {
61
        $this->indexName = $indexName;
62
    }
63
}
64