Completed
Branch master (073708)
by Josh
01:57
created

Repository Config

filter:
    excluded_paths:
        - 'tests/*'
checks:
    php:
        php5_style_constructor: false
        return_doc_comment_if_not_inferrable: true
        parameter_doc_comments: true
        param_doc_comment_if_not_inferrable: true
        no_new_line_at_end_of_file: true
        encourage_single_quotes: true
        avoid_unnecessary_concatenation: true
        avoid_multiple_statements_on_same_line: true

coding_style:
    php:
        spaces:
            before_parentheses:
                closure_definition: true
            around_operators:
                concatenation: true
        braces:
            classes_functions:
                class: new-line
                function: new-line
                closure: new-line
            if:
                opening: new-line
                else_on_new_line: true
            for:
                opening: new-line
            while:
                opening: new-line
            do_while:
                while_on_new_line: true
            switch:
                opening: new-line
            try:
                opening: new-line
                catch_on_new_line: true
                finally_on_new_line: true
        upper_lower_casing:
            keywords:
                general: lower
            constants:
                true_false_null: lower

tools:
    external_code_coverage: true