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 ( 55175e...3f4519 )
by Haven
03:20
created

Checkout Config

tools:
    #external_code_coverage: true
    php_mess_detector: true
    php_code_sniffer: true
    #sensiolabs_security_checker: true
    php_code_coverage: true
    php_pdepend: true
    php_loc:
        enabled: true
        excluded_dirs: [vendor, tests]
filter:
    excluded_paths:
        - 'tests/*'
build:
    tests:
        override:
            -
                command: 'vendor/bin/phpunit --coverage-clover=my-coverage-file'
                coverage:
                    file: 'my-coverage-file'
                    format: 'php-clover'

Repository Config

filter:
    excluded_paths:
        - 'app/*'
checks:
    php: true
coding_style:
    php:
        indentation:
            general:
                use_tabs: true
        spaces:
            around_operators:
                concatenation: true