Completed
Push — development ( db1ef3...185f70 )
by Bhanu
122:08 queued 64:23
created

Repository Config

checks:
    php:
        fix_php_opening_tag: false
        remove_php_closing_tag: false
        no_mixed_inline_html: false
        require_braces_around_control_structures: false
        psr2_control_structure_declaration: false
        avoid_superglobals: true
        security_vulnerabilities: true
        no_exit: true
        return_doc_comment_if_not_inferrable: true
        remove_extra_empty_lines: true
        phpunit_assertions: true
        parameter_doc_comments: true
        param_doc_comment_if_not_inferrable: true
        overriding_parameter: true
        no_short_variable_names:
            minimum: '3'
        no_long_variable_names:
            maximum: '20'
        more_specific_types_in_doc_comments: true
        fix_use_statements:
            remove_unused: true
            preserve_multiple: false
            preserve_blanklines: false
            order_alphabetically: false
        fix_line_ending: true
        variable_existence: true
        non_commented_empty_catch_block: true
        no_trailing_whitespace: true
        no_short_open_tag: true
        no_error_suppression: true
        encourage_shallow_comparison: true
        closure_use_not_conflicting: true
        avoid_length_functions_in_loops: true
        avoid_duplicate_types: true
        simplify_boolean_return: true
        return_doc_comments: true
        properties_in_camelcaps: true
        parameters_in_camelcaps: true
        no_short_method_names:
            minimum: '3'
        no_goto: true
        naming_conventions:
            local_variable: '^[a-z][a-zA-Z0-9]*$'
            abstract_class_name: ^Abstract|Factory$
            utility_class_name: 'Utils?$'
            constant_name: '^[A-Z][A-Z0-9]*(?:_[A-Z0-9]+)*$'
            property_name: '^[a-z][a-zA-Z0-9]*$'
            method_name: '^(?:[a-z]|__)[a-zA-Z0-9]*$'
            parameter_name: '^[a-z][a-zA-Z0-9]*$'
            interface_name: '^[A-Z][a-zA-Z0-9]*Interface$'
            type_name: '^[A-Z][a-zA-Z0-9]*$'
            exception_name: '^[A-Z][a-zA-Z0-9]*Exception$'
            isser_method_name: '^(?:is|has|should|may|supports)'
        check_method_contracts:
            verify_interface_like_constraints: true
            verify_documented_constraints: true
            verify_parent_constraints: true

filter: { }     
coding_style:
    php: true
    
build:
    nodes:
        coverage:
            tests:
                override:
                    -
                        command: 'vendor/bin/phpunit --coverage-clover=clover.xml'
                        coverage:
                            file: 'clover.xml'
                            format: 'clover'
        analysis:
            tests:
                override:
                    - php-scrutinizer-run

Global Config


coding_style:
    php:
        braces:
            classes_functions:
                class: new-line
                function: new-line
            if:
                opening: end-of-line
            for:
                opening: end-of-line
            try:
                opening: end-of-line
        upper_lower_casing:
            keywords:
                general: lower
            constants:
                true_false_null: lower