Completed
Push — master ( 5ae5b3...910324 )
by Marco
02:38
created

Checkout Config

filter:
    excluded_paths: [tests/*]

checks:
    php:
        remove_extra_empty_lines: true
        remove_php_closing_tag: true
        remove_trailing_whitespace: true
        fix_use_statements:
            remove_unused: true
            preserve_multiple: false
            preserve_blanklines: true
            order_alphabetically: true
        fix_php_opening_tag: true
        fix_linefeed: true
        fix_line_ending: true
        fix_identation_4spaces: true
        fix_doc_comments: true

tools:
    external_code_coverage:
        timeout: 600
        runs: 3

Repository Config

filter:
    excluded_paths:
        - 'tests/*'
checks:
    php: true
coding_style:
    php: {  }

Global Config

checks:
    php:
        verify_property_names: true
        use_self_instead_of_fqcn: true
        uppercase_constants: true
        simplify_boolean_return: true
        return_doc_comments: true
        return_doc_comment_if_not_inferrable: true
        phpunit_assertions: true
        parameter_doc_comments: true
        no_goto: true
        newline_at_end_of_file: true
        function_in_camel_caps: true
        fix_line_ending: true
        encourage_single_quotes: true
        encourage_postdec_operator: true
        classes_in_camel_caps: true
        avoid_multiple_statements_on_same_line: true
        duplication: false
        avoid_perl_style_comments: true
        avoid_fixme_comments: true

coding_style:
    php:
        spaces:
            around_operators:
                concatenation: false
            within:
                if: true
                for: true
                while: true
                switch: true
            ternary_operator:
                in_short_version: true
        braces:
            classes_functions:
                class: end-of-line
                function: end-of-line
                closure: end-of-line
            if:
                opening: end-of-line
                always: false
            for:
                opening: end-of-line
                always: false
            while:
                opening: end-of-line
                always: false
            do_while:
                opening: end-of-line
                always: false
            switch:
                opening: end-of-line
            try:
                opening: end-of-line
        upper_lower_casing:
            constants:
                true_false_null: lower