Passed
Branch develop (b003e1)
by Susi
01:57
created

Repository Config

checks:
    php:
        uppercase_constants: true
        simplify_boolean_return: true
        prefer_while_loop_over_for_loop: true
        phpunit_assertions: true
        parameters_in_camelcaps: true
        no_goto: true
        encourage_single_quotes: true
        check_method_contracts:
            verify_interface_like_constraints: true
            verify_documented_constraints: false
            verify_parent_constraints: true
    javascript: true

filter:
    excluded_paths:
        - '*.min.js'
        - 'docs/**'
        - 'Tests/**'
coding_style:
    php:
        spaces:
            around_operators:
                concatenation: true
            other:
                after_type_cast: false
build:
    tests:
        override:
            -
                command: 'bin/phpunit --coverage-clover=coverage.xml'
                coverage:
                    file: 'coverage.xml'
                    format: 'clover'
    nodes:
        analysis:
            project_setup:
                override: ['true']
            tests:
                override: [php-scrutinizer-run]