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.
Passed
Pull Request — dev-extbase-fluid (#723)
by Alexander
06:23 queued 03:33
created

Basket::setDocIds()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
nc 1
nop 1
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 Basket extends \TYPO3\CMS\Extbase\DomainObject\AbstractValueObject
16
{
17
    /**
18
     * @var string
19
     */
20
    protected $label;
21
    /**
22
     * @var string
23
     */
24
    protected $sessionId;
25
    /**
26
     * @var string|null
27
     */
28
    protected $docIds;
29
30
    /**
31
     * @return string
32
     */
33
    public function getLabel(): string
34
    {
35
        return $this->label;
36
    }
37
38
    /**
39
     * @param string $label
40
     */
41
    public function setLabel(string $label): void
42
    {
43
        $this->label = $label;
44
    }
45
46
    /**
47
     * @return string
48
     */
49
    public function getSessionId(): string
50
    {
51
        return $this->session_id;
52
    }
53
54
    /**
55
     * @param string $session_id
56
     */
57
    public function setSessionId(string $session_id): void
58
    {
59
        $this->session_id = $session_id;
0 ignored issues
show
Bug Best Practice introduced by
The property session_id does not exist. Although not strictly required by PHP, it is generally a best practice to declare properties explicitly.
Loading history...
60
    }
61
62
    /**
63
     * @return string|null
64
     */
65
    public function getDocIds(): ?string
66
    {
67
        return $this->docIds;
68
    }
69
70
    /**
71
     * @param string|null $docIds
72
     */
73
    public function setDocIds(?string $docIds): void
74
    {
75
        $this->docIds = $docIds;
76
    }
77
78
79
}