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
Pull Request — master (#8)
by Ana Belén
03:32
created

Checkout Config

inherit: true

checks:
    php:
        code_rating: true
        duplication: true
        
tools:
  php_code_coverage:
    test_command: vendor/bin/phpunit -c tests/phpunit.xml tests/GeoTimeZone/CalculatorTest.php

  php_code_sniffer:
    enabled: true
    config:
      standard: PSR1 # Built-in standards: PEAR, PHPCS, PSR1, PSR2, Squiz, Zend

  php_cpd:
    min_lines: 5
    min_tokens: 70
    enabled: true

  php_cs_fixer:
    enabled: true
    config:
      level: psr1 # Allowed Values: "psr0", "psr1", "psr2", "all"

  php_loc:
    command: phploc
    enabled: true

  php_mess_detector:
    enabled: true
    config:
      rulesets:
        - codesize
build:
    tests:
        override:
            -
                wget https://s3-eu-west-1.amazonaws.com/geo-timezone/data_20170926.zip -P ./build/
            -
                unzip ./build/data_20170926.zip
            -
                command: 'vendor/bin/phpunit -c tests/phpunit.xml --coverage-clover=coverageFile tests/GeoTimeZone/CalculatorTest.php'
                coverage:
                    file: 'coverageFile'
                    format: 'php-clover'

Repository Config

# language: php

# tests: true