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 — develop ( c4b8bb...191f74 )
by Sébastien
03:11
created

Checkout Config

build:
    environment:
        php:
            version: 5.6
    tests:
        override:
            - phpcs-run --standard=.cs/cs_ruleset.xml --extensions=php src
            - phpcs-run --standard=.cs/cs_ruleset.xml --extensions=php tests
            -
                command: ./vendor/bin/phpunit --coverage-clover=collection.clover
                coverage:
                    file: collection.clover
                    format: php-clover

checks:
    php:
        duplication: false
        unused_parameters: false
        no_exit: false

filter:
    excluded_paths:
        - vendor/*
        - .idea
        - .codeclimate.yml
        - .scrutinizer.yml
        - tests/*


Repository Config

filter:
    excluded_paths:
        - 'tests/*'
checks:
    php:
        simplify_boolean_return: true
        unused_variables: false
        no_exit: false
        unused_parameters: false
        duplication: false

coding_style:
    php:
        spaces:
            within:
                brackets: true
            other:
                after_type_cast: false