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.

AceExtraAsset
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 2
Bugs 0 Features 1
Metric Value
wmc 0
c 2
b 0
f 1
lcom 0
cbo 1
dl 0
loc 10
1
<?php
2
3
namespace cornernote\ace\web;
4
5
use yii\web\AssetBundle;
6
use yii\web\View;
7
8
/**
9
 * Configuration for Ace Admin Extra client script files
10
 */
11
class AceExtraAsset extends AssetBundle
12
{
13
    public $sourcePath = '@vendor/bower/cornernote-ace/assets';
14
    public $js = [
15
        'js/ace-extra.min.js',
16
    ];
17
    public $jsOptions = [
18
        'position' => View::POS_HEAD,
19
    ];
20
}
21