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
Pull Request — master (#7)
by Enjoys
07:39 queued 05:43
created

Checkout Config

build:
  environment:
    php:
      version: 8.0.14
  nodes:
    analysis:
      project_setup:
        override:
          - 'true'
      tests:
        override:
          - php-scrutinizer-run
          - command: XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-clover ./build/logs/clover.xml
            coverage:
              file: ./build/logs/clover.xml   # <- Set this to where we find the coverage data.
              #    The path is relative to the current directory.
              format: clover
filter:
  excluded_paths:
    - 'tests/*'
    - 'example/*'
checks:
  php: true
coding_style:
  php:
    spaces:
      around_operators:
        concatenation: true