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.

AceBaseAsset
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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