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   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 26
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
dl 0
loc 26
ccs 0
cts 5
cp 0
rs 10
c 0
b 0
f 0
wmc 2
lcom 0
cbo 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getApp() 0 4 1
A setApp() 0 4 1
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
}