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.

AbstractBootstraper::setApp()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 1
dl 0
loc 4
ccs 0
cts 3
cp 0
crap 2
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Nip\Application\Bootstrap\Bootstrapers;
4
5
use Nip\Application;
6
7
abstract class AbstractBootstraper implements BootstraperInterface
8
{
9
    /**
10
     * The application instance.
11
     *
12
     * @var Application
13
     */
14
    protected $app;
15
16
    /**
17
     * @return Application
18
     */
19
    public function getApp()
20
    {
21
        return $this->app;
22
    }
23
24
    /**
25
     * @param Application $app
26
     */
27
    public function setApp($app)
28
    {
29
        $this->app = $app;
30
    }
31
32
}