Passed
Push — master ( 7faf76...b86b4a )
by Adrien
04:11
created

Checkout Config

checks:
    php: true

coding_style:
    php:
        spaces:
            before_parentheses:
                closure_definition: true
            around_operators:
                concatenation: true

build:
    environment:
        variables:
            NVM_NODEJS_ORG_MIRROR: 'https://nodejs.org/dist'
            NODEJS_ORG_MIRROR: 'https://nodejs.org/dist'
    nodes:
        analysis:
            image: default-jammy
            environment:
                php: 8.2
                node: 22
            tests:
                override:
                    - php-scrutinizer-run

tools:
    external_code_coverage:
        timeout: 600
        runs: 1

build_failure_conditions:
    - 'elements.rating(<= C).new.exists' # No new classes/methods with a rating of C or worse allowed
    - 'issues.severity(>= MAJOR).new.exists' # New issues of major or higher severity
    - 'project.metric_change("scrutinizer.test_coverage", < 0)' # Code Coverage decreased from previous inspection
    - 'patches.label("Unused Use Statements").new.exists' # No new unused imports patches allowed

Repository Config

build:
    nodes:
        analysis:
            project_setup:
                override:
                    - 'true'
            tests:
                override:
                    - php-scrutinizer-run
                    -
                        command: phpcs-run
                        use_website_config: true
checks:
    php:
        fix_php_opening_tag: false
        remove_php_closing_tag: false
        one_class_per_file: false
        side_effects_or_types: false
        no_mixed_inline_html: false
        require_braces_around_control_structures: false
        php5_style_constructor: false
        no_global_keyword: false
        avoid_usage_of_logical_operators: false
        psr2_class_declaration: false
        no_underscore_prefix_in_properties: false
        no_underscore_prefix_in_methods: false
        blank_line_after_namespace_declaration: false
        single_namespace_per_use: false
        psr2_switch_declaration: false
        psr2_control_structure_declaration: false
        avoid_superglobals: false
        security_vulnerabilities: false
        no_exit: false
coding_style:
    php: {  }
filter: {  }