Completed
Push — master ( 2fcf3b...8f00bb )
by Rick
04:45 queued 02:17
created

Checkout Config

# .scrutinizer.yml
filter:
    paths: [src/*]
tools:
    php_code_coverage: true
    external_code_coverage: true

    # Marking Particle\Filter\FilterRule as stable, so the false positive on coupling is removed.
    # The Chain object is a factory, so it has to have high coupling.
    php_analyzer:
        config:
            metrics_coupling:
                stable_code:
                    namespace_prefixes:
                        - Particle\Filter\FilterRule

Global Config

filter:
    excluded_paths:
        - 'tests/*'
checks:
    php: true
coding_style:
    php:
        spaces:
            general:
                linefeed_character: newline
        braces:
            classes_functions:
                class: undefined
                function: undefined
                closure: undefined
            if:
                opening: undefined
            for:
                opening: undefined
            while:
                opening: undefined
            do_while:
                opening: undefined
            switch:
                opening: undefined
            try:
                opening: undefined
        upper_lower_casing:
            keywords:
                general: undefined
            constants:
                true_false_null: undefined