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.

AceIEAsset
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 9
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 9
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 AceIEAsset extends AssetBundle
12
{
13
    public $sourcePath = '@vendor/bower/cornernote-ace/assets';
14
    public $js = [
15
        'js/html5shiv.min.js',
16
        'js/respond.min.js',
17
    ];
18
    public $jsOptions = ['condition' => 'lte IE 8'];
19
}
20