Passed
Pull Request — develop (#91)
by
unknown
02:13
created

Repository Config

build:
    nodes:
        tests:
            tests:
                override:
                    - command: vendor/bin/phpunit --coverage-clover coverage.xml
                      coverage:
                        file: coverage.xml
                        format: clover
        analysis:
            tests:
                override:
                    -
                        command: phpcs-run
                        use_website_config: true

filter:
    excluded_paths:
        - 'bin/*'
        - 'test/*'
checks:
    php:
        remove_extra_empty_lines: true
        param_doc_comment_if_not_inferrable: true
        return_doc_comment_if_not_inferrable: true
        no_goto: true
        fix_line_ending: true
coding_style:
    php:
        indentation:
            general:
                use_tabs: true
        spaces:
            around_operators:
                concatenation: true
            other:
                after_type_cast: false