Passed
Pull Request — master (#10)
by Łukasz
08:10
created

Checkout Config

filter:
    paths: ["src/*"]
    excluded_paths:
        - "tests/"               # Everything in a root level "tests" directory
        - "tests"                # Without trailing "/", just ignores a single file name "tests"
                                 # in your root folder

        - "src/*Bundle/Tests/"   # Wildcards can be placed anywhere
        - "*/Tests/*"            # Everything that has a "Tests" directory somewhere in the path

build:
    environment:
        php:
            version: 5.6.30
    tests:
      override:
        -
          command: 'vendor/bin/phpspec run -f progress'
          coverage:
            file: 'coverage.clover'
            format: 'php-clover'

Repository Config

checks:
    php: true
filter: {  }
coding_style:
    php:
        spaces:
            around_operators:
                concatenation: true