Completed
Push — master ( 8e4bc7...01d33b )
by Bryan
06:13
created

Repository Config

tools:
    php_sim: true
    php_pdepend: true
    php_analyzer: true
    php_mess_detector: true
    php_changetracking: true
    sensiolabs_security_checker: true
    external_code_coverage:
        timeout: 600

coding_style:
    php:
        indentation:
            general:
                use_tabs: true
        spaces:
            ternary_operator:
                in_short_version: 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:
                opening: new-line
            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

checks:
    php:
        uppercase_constants: true
        php5_style_constructor: true
        no_trailing_whitespace: true
        no_short_open_tag: true
        no_exit: true
        no_goto: true
        newline_at_end_of_file: true
        custom_coding_standard:
            git_repository: 'https://github.com/phpbb/phpbb.git'
            git_version: 3.1.x
            ruleset_path: build/code_sniffer/ruleset-minimum.xml
        avoid_superglobals: false
        avoid_length_functions_in_loops: true
        avoid_closing_tag: true
        parameter_doc_comments: true
        code_rating: true