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.
Test Failed
Push — master ( 2a4b73...c7416b )
by Peng
01:59
created

Checkout Config

inherit: true

build:
    nodes:
        analysis:
            project_setup:
                override:
                    - 'true'
                before:
                    # a workaround for https://github.com/sebastianbergmann/phpunit/issues/1976
                    - stty cols 80
                    - curl -Ls http://get.sensiolabs.de/deptrac.phar > deptrac && chmod +x deptrac
                override:
                    - composer install
                after:
                    - php bin/console cache:warmup
            tests:
                override:
                    - php-scrutinizer-run
                    -
                        command: phpcs-run
                        use_website_config: true
            environment:
                hosts:
                    report.awin: '127.0.0.1'
                apache2:
                    modules: ['rewrite']
                    sites:
                        awin_report_ms:
                            web_root: 'web/'
                            host: 'report.awin'
                php:
                    version: '7.1'
                elasticsearch: false
                rabbitmq: true
                redis: true
                postgresql: false
                variables:
                    APP_ENV: testing
        tests: true
    cache:
        directories:
            - ~/.composer/
    dependencies:
       before:
           - sudo apt-get install -y --force-yes graphviz
    tests:
        override:
            -
                command: './vendor/bin/phpunit --testsuite="unit" --coverage-clover=phpcov-unit.xml --printer PHPUnit_TextUI_ResultPrinter'
                coverage:
                    file: 'var/code-coverage/phpcov-unit.xml'
                    format: 'php-clover'
            -
                command: './vendor/bin/phpunit --testsuite="integration" --coverage-clover=phpcov-integration.xml --printer PHPUnit_TextUI_ResultPrinter'
                coverage:
                    file: 'var/code-coverage/phpcov-integration.xml'
                    format: 'php-clover'
            -
                command: './deptrac analyze depfile.yml --formatter-graphviz-dump-image=/home/scrutinizer/artifacts/dependencies.png'

filter:
    excluded_paths:
            - 'app/*'
            - 'bin/*'
            - 'features/*'
            - 'tests/*'
            - 'vendor/*'
build_failure_conditions:
    - 'elements.rating(<= B).new.exists'
    - 'issues.label("coding-style").new.exists'
    - 'issues.severity(>= MAJOR).new.exists'
checks:
    php: true
coding_style:
    php:
        spaces:
            around_operators:
                concatenation: true
            other:
                after_type_cast: false

Repository Config

build:
    nodes:
        analysis:
            project_setup:
                override:
                    - 'true'
            tests:
                override:
                    - php-scrutinizer-run
                    -
                        command: phpcs-run
                        use_website_config: true
            environment:
                node:
                    version: 6.0.0
        tests: true
filter:
    excluded_paths:
        - 'app/*'
        - 'tests/*'
        - 'bin/*'
        - 'features/*'
checks:
    php: true
coding_style:
    php:
        spaces:
            around_operators:
                concatenation: true
            other:
                after_type_cast: false