Completed
Push — master ( eaa7ea...40b8f9 )
by Daryl
01:35
created

Checkout Config

# .scrutinizer.yml
tools:
  external_code_coverage: true

Repository Config

checks:
    php:
        use_self_instead_of_fqcn: true
        uppercase_constants: true
        simplify_boolean_return: true
        return_doc_comments: true
        return_doc_comment_if_not_inferrable: true
        prefer_while_loop_over_for_loop: true
        parameter_doc_comments: true
        param_doc_comment_if_not_inferrable: true
        overriding_parameter: true
        no_short_variable_names:
            minimum: '3'
        optional_parameters_at_the_end: true
        no_short_method_names:
            minimum: '3'
        no_long_variable_names:
            maximum: '20'
        no_goto: true
        newline_at_end_of_file: true
        require_scope_for_methods: false

filter: {  }
coding_style:
    php:
        spaces:
            within:
                array_initializer: true
                function_call: true
                function_declaration: true
                if: true
                for: true
                while: true
                switch: true
                catch: true
                type_cast: true