Passed
Push — master ( 4ea381...2fdd6b )
by Eugene
04:43
created

Repository Config

filter:
    excluded_paths:
        - 'library/*'
        - 'vendor/*'
        - 'test/*'
        - 'tools/*'

coding_style:
    php:
        spaces:
            around_operators:
                concatenation: true
            other:
                after_type_cast: false
build:
    environment:
        php: 5.6.9
        php: 7.0.6
    tests:
        override:
            -
                command: 'composer run-script post-create-project-cmd && phpunit --coverage-clover=some-file --bootstrap=./test/bootstrap.php'
                coverage:
                    file: 'some-file'
                    format: 'clover'

checks:
    php:
        verify_property_names: true
        verify_argument_usable_as_reference: true
        verify_access_scope_valid: true
        variable_existence: true
        useless_calls: true
        use_statement_alias_conflict: true
        use_self_instead_of_fqcn: true
        uppercase_constants: true
        unused_variables: true
        unused_properties: true
        simplify_boolean_return: 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
        phpunit_assertions: true
        parameters_in_camelcaps: true
        parameter_doc_comments: true
        param_doc_comment_if_not_inferrable: true
        optional_parameters_at_the_end: true
        no_short_method_names:
            minimum: '3'
        no_short_variable_names:
            minimum: '3'
        no_long_variable_names:
            maximum: '30'
        line_length:
            max_length: '120'
        function_in_camel_caps: true
        fix_use_statements:
            remove_unused: true
            preserve_multiple: false
            preserve_blanklines: false
            order_alphabetically: false
        classes_in_camel_caps: true
        align_assignments: true