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.
Passed
Push — master ( d83932...0cdbdb )
by Matthew
01:55
created

Checkout Config

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

checks:
    php: true

tools:
    php_sim: true
    php_pdepend: true
    php_analyzer: true
    php_cs_fixer: true

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'

filter:
    excluded_paths:
        - 'tests/*'
checks:
    php:
        simplify_boolean_return: true

coding_style:
    php:
        spaces:
            around_operators:
                concatenation: true
            other:
                after_type_cast: false