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/swiper/app.js   A

Complexity

Total Complexity 2
Complexity/F 1

Size

Lines of Code 20
Function Count 2

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 15
c 0
b 0
f 0
dl 0
loc 20
rs 10
wmc 2
mnd 0
bc 0
fnc 2
bpm 0
cpm 1
noi 2
1
(function($) {
2
    $(document).ready(function () {
3
        var swiper = new Swiper('#banner-slider', {
0 ignored issues
show
Bug introduced by
The variable Swiper seems to be never declared. If this is a global, consider adding a /** global: Swiper */ 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...
Unused Code introduced by
The variable swiper seems to be never used. Consider removing it.
Loading history...
4
            loop: true,
5
            centeredSlides: true,
6
            autoplay: {
7
                delay: 5000,
8
                disableOnInteraction: false,
9
            },
10
            pagination: {
11
                el: '.swiper-pagination',
12
                clickable: true,
13
            },
14
            navigation: {
15
                nextEl: '.swiper-button-next',
16
                prevEl: '.swiper-button-prev',
17
            },
18
        });
19
    });
20
})(jQuery);
21