Passed
Push — master ( 839756...e774aa )
by Christian
03:24
created

Checkout Config

build:
  environment:
    php:
      version: '7.4.1'
  nodes:
    my-tests:
      environment:
        php:
          version: '7.4.1'
      cache:
        disabled: true

  dependencies:
    override:
      - composer install --ignore-platform-reqs --no-interaction

build_failure_conditions:
  - 'elements.rating(<= B).new.exists'                        # No new classes/methods with a rating of C or worse allowed
  - 'project.metric_change("scrutinizer.test_coverage", < 0)' # Code Coverage decreased from previous inspection

Repository Config

build:
    environment:
        php:
            version: '7.4.1'
    nodes:
        analysis:
            project_setup:
                override:
                    - 'true'
            tests:
                override:
                    - php-scrutinizer-run
                    -
                        command: phpcs-run
                        use_website_config: true
        tests: true
filter:
    excluded_paths:
        - 'tests/*'
checks:
    php: true
coding_style:
    php:
        spaces:
            around_operators:
                concatenation: true
            other:
                after_type_cast: false