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 — master (#191)
by Herbert
10:39
created

Bootstrap::bootstrap()   B

Complexity

Conditions 4
Paths 8

Size

Total Lines 24
Code Lines 13

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 15
CRAP Score 4.026

Importance

Changes 0
Metric Value
cc 4
eloc 13
nc 8
nop 1
dl 0
loc 24
ccs 15
cts 17
cp 0.8824
crap 4.026
rs 8.6845
c 0
b 0
f 0
1
<?php
2
3
namespace bedezign\yii2\audit;
4
use yii\base\Application;
5
use yii\base\BootstrapInterface;
6
7
/**
8
 * Bootstrap
9
 * @package bedezign\yii2\audit
10
 */
11
class Bootstrap implements BootstrapInterface
12
{
13
    /**
14
     * Bootstrap method to be called during application bootstrap stage.
15
     *
16
     * @param Application $app the application currently running
17
     */
18 50
    public function bootstrap($app)
19
    {
20
        // Make sure to register the base folder as alias as well or things like assets won't work anymore
21 50
        \Yii::setAlias('@bedezign/yii2/audit', __DIR__);
22
23 50
        if ($app instanceof \yii\console\Application) {
24
            $app->controllerMap['audit'] = 'bedezign\yii2\audit\commands\AuditController';
25
        }
26
27 50
        $moduleName = Audit::findModuleIdentifier();
28 50
        if ($moduleName) {
29
            // The module was added in the configuration, make sure to add it to the application bootstrap so it gets loaded
30 50
            $app->bootstrap[] = $moduleName;
31 50
            $app->bootstrap = array_unique($app->bootstrap, SORT_REGULAR);
32 50
        }
33
34 50
        if ($app->has('i18n')) {
35 50
            $app->i18n->translations['audit'] = [
36 50
                'class'          => 'yii\i18n\PhpMessageSource',
37 50
                'sourceLanguage' => 'en',
38 50
                'basePath'       => '@bedezign/yii2/audit/messages',
39
            ];
40 50
        }
41 50
    }
42
}
43