Checkout Config
            build:
    environment:
        php:
            version: 5.6
    tests:
        override:
            - phpcs-run --standard=.cs/cs_ruleset.xml --extensions=php src
            - phpcs-run --standard=.cs/cs_ruleset.xml --extensions=php tests
            -
                command: ./vendor/bin/phpunit --coverage-clover=collection.clover
                coverage:
                    file: collection.clover
                    format: php-clover
checks:
    php:
        duplication: false
        unused_parameters: false
        no_exit: false
filter:
    excluded_paths:
        - vendor/*
        - .idea
        - .codeclimate.yml
        - .scrutinizer.yml
        - tests/*
                    Repository Config
            filter:
    excluded_paths:
        - 'tests/*'
checks:
    php:
        simplify_boolean_return: true
        unused_variables: false
        no_exit: false
        unused_parameters: false
        duplication: false
coding_style:
    php:
        spaces:
            within:
                brackets: true
            other:
                after_type_cast: false