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 (2 issues)

1
(function($) {
2
    $(document).ready(function () {
3
        var swiper = new Swiper('#banner-slider', {
0 ignored issues
show
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...
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