Completed
Push — master ( 7cc415...6f294e )
by Jerry
02:16
created

Checkout Config

build:
    tests:
        override:
            -
                command: 'phpunit'
                coverage:
                    file: 'build/logs/clover.xml'
                    format: 'php-clover'

Global Config

filter:
    excluded_paths:
        - 'tests/*'
checks:
    php: true

coding_style:
    php:
        spaces:
            before_parentheses:
                if: false
                for: false
                while: false
                switch: false
                catch: false
            around_operators:
                concatenation: false
        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: upper