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.
Failed Conditions
Push — master ( bd69c1...c24003 )
by Matthew
01:44
created

Checkout Config

build:
    tests:
        override:
            -
                command: 'vendor/bin/phpunit --coverage-clover=some-file'
                coverage:
                    file: 'some-file'
                    format: 'clover'

before_commands:
    - "composer install --prefer-source"

build_failure_conditions:
    - 'issues.severity(>= MAJOR).new.exists'                    # no new major issues
    - 'elements.rating(<= C).new.exists'                        # keep all methods B or better
    - 'patches.label("Unused Use Statements").new.exists'       # no new unused use statements
    - 'project.metric_change("scrutinizer.quality", < 0.25)'    # code quality cannot dip more than half a point
    - 'project.metric_change("scrutinizer.test_coverage", < 0)' # no reduction in coverage

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
filter:
    excluded_paths:
        - 'tests/*'
checks:
    php: true
coding_style:
    php:
        spaces:
            around_operators:
                concatenation: true
            other:
                after_type_cast: false