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.
Test Failed
Push — master ( 8bca22...568bf9 )
by Gabriel
13:02 queued 05:02
created

ReportsServiceProvider::newDispatcher()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
c 0
b 0
f 0
rs 10
nc 1
cc 1
eloc 2
nop 0
1
<?php
2
3
namespace ByTIC\Common\Reports;
4
5
use Nip\Container\ServiceProviders\Providers\AbstractSignatureServiceProvider;
6
7
/**
8
 * Class ReportsServiceProvider
9
 *
10
 * @package ByTIC\Common\Reports
11
 */
12
class ReportsServiceProvider extends AbstractSignatureServiceProvider
13
{
14
15
    /**
16
     * @inheritdoc
17
     */
18
    public function register()
19
    {
20
        $this->registerDispatcher();
21
    }
22
23
    protected function registerDispatcher()
24
    {
25
    }
26
27
    /**
28
     * @inheritdoc
29
     */
30
    public function provides()
31
    {
32
        return ['reports'];
33
    }
34
}
35