Completed
Push — master ( b38aa1...28ecc4 )
by Fenz
06:33
created

Repository Config

checks:
    php:
        newline_at_end_of_file: true
        simplify_boolean_return: true
        uppercase_constants: true
        use_self_instead_of_fqcn: true
        return_doc_comments: true
        return_doc_comment_if_not_inferrable: true
        remove_extra_empty_lines: true
        properties_in_camelcaps: true
        prefer_while_loop_over_for_loop: true
        parameters_in_camelcaps: true
        parameter_doc_comments: true
        param_doc_comment_if_not_inferrable: true
        overriding_parameter: true
        optional_parameters_at_the_end: true
        no_new_line_at_end_of_file: true
        no_goto: true
        more_specific_types_in_doc_comments: true
        fix_line_ending: true
        encourage_single_quotes: true
        encourage_postdec_operator: true
        classes_in_camel_caps: true
        check_method_contracts:
            verify_interface_like_constraints: true
            verify_documented_constraints: true
            verify_parent_constraints: true
        avoid_unnecessary_concatenation: true
        avoid_multiple_statements_on_same_line: true
        align_assignments: true

filter: {  }
coding_style:
    php:
        indentation:
            general:
                use_tabs: true
        spaces:
            before_parentheses:
                if: false
                for: false
                while: false
                switch: false
                catch: false
            around_operators:
                assignment: false
                equality: false
                relational: false
                bitwise: false
                additive: false
                multiplicative: false
                shift: false
            before_left_brace:
                class: false
                function: false
                if: false
                else: false
                for: false
                while: false
                do: false
                switch: false
                try: false
                catch: false
                finally: false
            before_keywords:
                else: false
                while: false
                catch: false
                finally: false
            within:
                brackets: true
                array_initializer: true
                function_declaration: true
                if: true
                for: true
                while: true
                switch: true
                catch: true
            ternary_operator:
                before_condition: false
            other:
                after_type_cast: false
        braces:
            classes_functions:
                class: new-line
                function: new-line
                closure: end-of-line
            if:
                opening: end-of-line
            for:
                opening: end-of-line
            while:
                opening: end-of-line
            do_while:
                opening: end-of-line
            switch:
                opening: end-of-line
            try:
                opening: end-of-line
        upper_lower_casing:
            keywords:
                general: lower
            constants:
                true_false_null: lower