Passed
Branch 4.1.0 (271fee)
by Joao
03:09
created

Repository Config

checks:
    php: true
filter:
    paths:
        - src/*
coding_style:
    php:
        spaces:
            around_operators:
                concatenation: true
build:
    tests:
        override:
            -
                command: 'phpunit --coverage-clover=some-file'
                coverage:
                    file: 'some-file'
                    format: 'clover'
    nodes:
        tests: true
        analysis:
            tests:
                override:
                    -
                        command: phpcs-run
                        use_website_config: true
                    - php-scrutinizer-run

Global Config

filter:
    paths:
        - src/*

checks:
    php: true

coding_style:
    php:
        indentation:
            general:
                use_tabs: false
            switch:
                indent_case: false
        spaces:
            around_operators:
                concatenation: true
            other:
                after_type_cast: false


build:
    environment:
        php:
            version: 7.1 
    nodes:
        analysis:
            tests:
                override:
                    - php-scrutinizer-run
        coverage:
            tests:
                override:
                    -
                        command: 'vendor/bin/phpunit --coverage-clover=clover-report'
                        coverage:
                            file: 'clover-report'
                            format: 'clover'