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
Push — master ( 78d303...7493af )
by
unknown
05:51
created

src/Resources/public/js/glide/app.js   A

Complexity

Total Complexity 2
Complexity/F 1

Size

Lines of Code 11
Function Count 2

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 8
c 0
b 0
f 0
dl 0
loc 11
rs 10
wmc 2
mnd 0
bc 0
fnc 2
bpm 0
cpm 1
noi 1
1
(function($) {
2
    $(document).ready(function () {
3
        var glide = new Glide('#banner-slider', {
0 ignored issues
show
Bug introduced by
The variable Glide seems to be never declared. If this is a global, consider adding a /** global: Glide */ comment.

This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.

To learn more about declaring variables in Javascript, see the MDN.

Loading history...
4
            autoplay: 5000,
5
            hoverpause: false,
6
            type: 'carousel',
7
        });
8
9
        glide.mount();
10
    });
11
})(jQuery);
12