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.
Completed
Pull Request — master (#267)
by
unknown
11:15
created

m150714_000001_alter_audit_data::up()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace bedezign\yii2\audit\migrations;
4
5
use bedezign\yii2\audit\components\Migration;
6
use yii\db\Schema;
7
8
class m150714_000001_alter_audit_data extends Migration
9
{
10
    const TABLE = '{{%audit_data}}';
11
12
    public function up()
13
    {
14
        $this->addColumn(self::TABLE, 'created', Schema::TYPE_DATETIME);
15
    }
16
17
}
18