Test Failed
Push — develop ( 761ae3...36d88a )
by Carsten
02:38
created

Checkout Config

# .scrutinizer.yml
build:
    tests:
        override:
            -
                command: 'vendor/bin/phpunit --coverage-clover=coverage'
                coverage:
                    file: 'coverage'
                    format: 'php-clover'

    nodes:
        php71:
            environment:
                php:
                    version: 7.1 # Common versions: 5.4, 5.5, 5.6, 7.1 or hhvm

        php56:
            environment:
                php:
                    version: 5.6 # Common versions: 5.4, 5.5, 5.6, 7.1 or hhvm

        hhvm:
            environment:
                php:
                    version: hhvm # Common versions: 5.4, 5.5, 5.6, 7.1 or hhvm


checks:
    php:
        code_rating: true
        duplication: true

filter:
    excluded_paths:
        - tests/*


Repository Config

# language: php

# tests: true

checks:
    php:
        unused_properties: true
        unused_parameters: true
        unused_methods: true
        unreachable_code: true
        sql_injection_vulnerabilities: true
        security_vulnerabilities: false
        return_doc_comments: true
        require_php_tag_first: true
        parameter_doc_comments: true