Test Failed
Branch main (c5612c)
by Thomas
02:25
created

Repository Config

build:
    environment:
        php: 8.2.0
    nodes:
        analysis:
            project_setup:
                override:
                    - 'true'
            tests:
                override:
                    - php-scrutinizer-run
                    -
                        command: phpcs-run
        phpunit:
            dependencies:
                override:
                    - composer self-update
                    - composer update --prefer-dist --no-interaction --no-progress --optimize-autoloader --ansi

            tests:
                override:
                    - command: ./vendor/bin/pest --coverage-clover ./coverage.xml
                      on_node: 1
                      coverage:
                          file: coverage.xml
                          format: php-clover
                          
filter:
    excluded_paths:
        - 'tests/*'
checks:
    php: true
coding_style:
    php:
        spaces:
            around_operators:
                bitwise: false
                concatenation: true
            other:
                after_type_cast: false