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
Push — master ( b3ee5f...a83cd4 )
by Brad
06:08 queued 03:01
created

Repository Config

# Scruitinizer Sample Configuration
# Profile: WPCollab_WP-plugin
#
# rename to `.scrutinizer.yml` or copy into your Scrutinizer setting
tools:
    # Runs the JSHint static analysis tool (https://scrutinizer-ci.com/docs/tools/javascript/jshint/)
    js_hint: true

    # Runs PHP Code Sniffer
    php_code_sniffer:
        config:

            standard: WordPress-Extra


    # Runs the PHP CS Fixer (http://cs.sensiolabs.org/) (https://scrutinizer-ci.com/docs/tools/php/cs-fixer/)
    # php_cs_fixer:
    #    config: { level: psr2 }

    # PHPLOC - PHP Lines of code
    php_loc: true

    # SensioLabs Security Checker (https://scrutinizer-ci.com/docs/tools/php/security-advisory-checker/)
    sensiolabs_security_checker: true

    # PHP Copy/Paste Detector (https://scrutinizer-ci.com/docs/tools/php/copy-paste-detector/)
    php_cpd: true

    # PHP PDepend (https://scrutinizer-ci.com/docs/tools/php/pdepend/)
    # Analyzes the size and structure of a PHP project
    php_pdepend: true

    # PHP Analyzer (https://scrutinizer-ci.com/docs/tools/php/php-analyzer/)
    php_analyzer: true

    # External Code Coverage (https://scrutinizer-ci.com/docs/tools/external-code-coverage/)
    # external_code_coverage: true

checks:
    php:
        newline_at_end_of_file: true
        prefer_unix_line_ending: true

        avoid_closing_tag: true
        no_trailing_whitespace: true
        
filter:
    excluded_paths: [includes/WPThumb/*, includes/foopluginbase/*, lib/*]