From 7d5734ff8fb2dd82c0186854842a134d0412c431 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 2 Jun 2026 10:11:03 +0000 Subject: [PATCH 1/9] Fix PHPStan CI matrix and add version-specific neon configs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update actions/checkout from v2 to v6 and actions/cache from v1/v2 to v4 - Split PHPStan job into two: PS 8.1/8.2 (PHP 7.4–8.1) and PS 9.1.x/develop (PHP 8.1–8.5) - Replace deprecated matrix entries ["8.0", "latest"] with current versions - Add phpstan-8.1.neon, phpstan-8.2.neon, phpstan-9.1.x.neon, phpstan-develop.neon - Ignore addJS/addCSS LegacyControllerContext errors introduced in PS 9.x Adapted from PrestaShop/ps_facetedsearch#1233 --- .github/workflows/php.yml | 57 +++++++++++++++++++++++++----- tests/phpstan/phpstan-8.1.neon | 2 ++ tests/phpstan/phpstan-8.2.neon | 2 ++ tests/phpstan/phpstan-9.1.x.neon | 8 +++++ tests/phpstan/phpstan-develop.neon | 8 +++++ 5 files changed, 68 insertions(+), 9 deletions(-) create mode 100644 tests/phpstan/phpstan-8.1.neon create mode 100644 tests/phpstan/phpstan-8.2.neon create mode 100644 tests/phpstan/phpstan-9.1.x.neon create mode 100644 tests/phpstan/phpstan-develop.neon diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index b183c208..e6368a69 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2.0.0 + uses: actions/checkout@v6 - name: PHP syntax checker 7.2 uses: prestashop/github-action-php-lint/7.2@master @@ -32,10 +32,10 @@ jobs: php-version: "7.2" - name: Checkout - uses: actions/checkout@v2.0.0 + uses: actions/checkout@v6 - name: Cache dependencies - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: vendor key: php-${{ hashFiles('composer.lock') }} @@ -46,30 +46,69 @@ jobs: - name: Run PHP-CS-Fixer run: ./vendor/bin/php-cs-fixer fix --dry-run --diff --using-cache=no phpstan: - name: PHPStan + name: PHPStan (PHP 7.4 - 8.1) runs-on: ubuntu-latest strategy: matrix: - presta-versions: ["8.0", "latest"] + presta-versions: ["8.1", "8.2"] + php-version: ["7.4", "8.1"] steps: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: "7.2" + php-version: ${{ matrix.php-version }} + + - name: Checkout + uses: actions/checkout@v6 + + # Add vendor folder in cache to make next builds faster + - name: Cache vendor folder + uses: actions/cache@v4 + with: + path: vendor + key: php-${{ hashFiles('composer.lock') }} + + # Add composer local folder in cache to make next builds faster + - name: Cache composer folder + uses: actions/cache@v4 + with: + path: ~/.composer/cache + key: php-composer-cache + + - name: Check composer + run: composer validate + + - run: composer install + + # Docker images prestashop/prestashop may be used, even if the shop remains uninstalled + - name: Execute PHPStan on PrestaShop (Tag ${{ matrix.presta-versions }}) + run: ./tests/phpstan.sh ${{ matrix.presta-versions }} + phpstan-recent: + name: PHPStan (PHP 8.1 - 8.5) + runs-on: ubuntu-latest + strategy: + matrix: + presta-versions: ["9.1.x", "develop"] + php-version: ["8.1", "8.5"] + steps: + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php-version }} - name: Checkout - uses: actions/checkout@v2.0.0 + uses: actions/checkout@v6 # Add vendor folder in cache to make next builds faster - name: Cache vendor folder - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: vendor key: php-${{ hashFiles('composer.lock') }} # Add composer local folder in cache to make next builds faster - name: Cache composer folder - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: ~/.composer/cache key: php-composer-cache diff --git a/tests/phpstan/phpstan-8.1.neon b/tests/phpstan/phpstan-8.1.neon new file mode 100644 index 00000000..c604f7c7 --- /dev/null +++ b/tests/phpstan/phpstan-8.1.neon @@ -0,0 +1,2 @@ +includes: + - %currentWorkingDirectory%/tests/phpstan/phpstan.neon diff --git a/tests/phpstan/phpstan-8.2.neon b/tests/phpstan/phpstan-8.2.neon new file mode 100644 index 00000000..c604f7c7 --- /dev/null +++ b/tests/phpstan/phpstan-8.2.neon @@ -0,0 +1,2 @@ +includes: + - %currentWorkingDirectory%/tests/phpstan/phpstan.neon diff --git a/tests/phpstan/phpstan-9.1.x.neon b/tests/phpstan/phpstan-9.1.x.neon new file mode 100644 index 00000000..9a3b677f --- /dev/null +++ b/tests/phpstan/phpstan-9.1.x.neon @@ -0,0 +1,8 @@ +includes: + - %currentWorkingDirectory%/tests/phpstan/phpstan.neon + +parameters: + ignoreErrors: + - '#Strict comparison using === between null and mixed will always evaluate to false\.#' + - '#Call to method addJS\(\) on an unknown class PrestaShop\\PrestaShop\\Core\\Context\\LegacyControllerContext\.#' + - '#Call to method addCSS\(\) on an unknown class PrestaShop\\PrestaShop\\Core\\Context\\LegacyControllerContext\.#' diff --git a/tests/phpstan/phpstan-develop.neon b/tests/phpstan/phpstan-develop.neon new file mode 100644 index 00000000..9a3b677f --- /dev/null +++ b/tests/phpstan/phpstan-develop.neon @@ -0,0 +1,8 @@ +includes: + - %currentWorkingDirectory%/tests/phpstan/phpstan.neon + +parameters: + ignoreErrors: + - '#Strict comparison using === between null and mixed will always evaluate to false\.#' + - '#Call to method addJS\(\) on an unknown class PrestaShop\\PrestaShop\\Core\\Context\\LegacyControllerContext\.#' + - '#Call to method addCSS\(\) on an unknown class PrestaShop\\PrestaShop\\Core\\Context\\LegacyControllerContext\.#' From 86372241a09643d0efe4d0a16c814e237b1a2fbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20Viguier?= Date: Tue, 2 Jun 2026 19:05:04 +0200 Subject: [PATCH 2/9] adjust CI from autoupgrade module --- .github/workflows/php.yml | 146 +++++++++++++--------------- tests/phpstan/prepend-constants.php | 11 +++ 2 files changed, 79 insertions(+), 78 deletions(-) create mode 100644 tests/phpstan/prepend-constants.php diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index e6368a69..0014ba83 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -2,7 +2,7 @@ name: PHP tests on: [push, pull_request] jobs: php-linter: - name: PHP Syntax check 7.2 => 8.1 + name: PHP Syntax check runs-on: ubuntu-latest steps: - name: Checkout @@ -22,102 +22,92 @@ jobs: - name: PHP syntax checker 8.1 uses: prestashop/github-action-php-lint/8.1@master + + - name: PHP syntax checker 8.2 + uses: prestashop/github-action-php-lint/8.2@master + + - name: PHP syntax checker 8.3 + uses: prestashop/github-action-php-lint/8.3@master + + - name: PHP syntax checker 8.4 + uses: prestashop/github-action-php-lint/8.4@master + + # Check the PHP code follow the coding standards php-cs-fixer: name: PHP-CS-Fixer runs-on: ubuntu-latest steps: - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: "7.2" - - - name: Checkout - uses: actions/checkout@v6 - - - name: Cache dependencies - uses: actions/cache@v4 + - name: Run PHP-CS-Fixer + uses: PrestaShop/.github/.github/actions/php-ci/php-cs@master with: - path: vendor - key: php-${{ hashFiles('composer.lock') }} + php-version: '8.1' - - name: Install dependencies - run: composer install - - - name: Run PHP-CS-Fixer - run: ./vendor/bin/php-cs-fixer fix --dry-run --diff --using-cache=no - phpstan: + # Run PHPStan against the module (PHP 7.4 – 8.1) + phpstan-74: name: PHPStan (PHP 7.4 - 8.1) runs-on: ubuntu-latest strategy: matrix: - presta-versions: ["8.1", "8.2"] - php-version: ["7.4", "8.1"] + presta_version: ['8.1.7', '8.2.x'] + php_version: ['7.4', '8.1'] + fail-fast: false + env: + PHPRC: ${{ github.workspace }}/${{ github.event.repository.name }}/.phpstan-php-ini steps: - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php-version }} - - - name: Checkout + - name: Checkout repository uses: actions/checkout@v6 - - # Add vendor folder in cache to make next builds faster - - name: Cache vendor folder - uses: actions/cache@v4 with: - path: vendor - key: php-${{ hashFiles('composer.lock') }} - - # Add composer local folder in cache to make next builds faster - - name: Cache composer folder - uses: actions/cache@v4 + path: ${{ github.event.repository.name }} + + - name: Prepare PHP env for PrestaShop 8 (define constants before any bootstrap) + run: | + mkdir -p ${{ github.event.repository.name }}/.phpstan-php-ini + { + echo "auto_prepend_file=$GITHUB_WORKSPACE/${{ github.event.repository.name }}/tests/phpstan/prepend-constants.php" + echo "memory_limit=512M" + } > ${{ github.event.repository.name }}/.phpstan-php-ini/php.ini + + - name: Run PHPStan + uses: PrestaShop/.github/.github/actions/php-ci/phpstan@master with: - path: ~/.composer/cache - key: php-composer-cache - - - name: Check composer - run: composer validate - - - run: composer install - - # Docker images prestashop/prestashop may be used, even if the shop remains uninstalled - - name: Execute PHPStan on PrestaShop (Tag ${{ matrix.presta-versions }}) - run: ./tests/phpstan.sh ${{ matrix.presta-versions }} - phpstan-recent: + php-version: ${{ matrix.php_version }} + presta-version: ${{ matrix.presta_version }} + module-name: ${{ github.event.repository.name }} + phpstan-level: '5' + phpstan-config: tests/phpstan/phpstan-${{ matrix.presta_version }}.neon + phpstan-version: '^0.12' + composer-version: '2.2.18' + + # Run PHPStan against the module (PHP 8.1 – 8.5) + phpstan: name: PHPStan (PHP 8.1 - 8.5) runs-on: ubuntu-latest strategy: matrix: - presta-versions: ["9.1.x", "develop"] - php-version: ["8.1", "8.5"] + presta_version: ['9.1.x', 'develop'] + php_version: ['8.1', '8.5'] + fail-fast: false + env: + PHPRC: ${{ github.workspace }}/${{ github.event.repository.name }}/.phpstan-php-ini steps: - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php-version }} - - - name: Checkout + - name: Checkout repository uses: actions/checkout@v6 - - # Add vendor folder in cache to make next builds faster - - name: Cache vendor folder - uses: actions/cache@v4 with: - path: vendor - key: php-${{ hashFiles('composer.lock') }} - - # Add composer local folder in cache to make next builds faster - - name: Cache composer folder - uses: actions/cache@v4 + path: ${{ github.event.repository.name }} + + - name: Prepare PHP env for PrestaShop 9.1.x and later (define constants before any bootstrap) + run: | + mkdir -p ${{ github.event.repository.name }}/.phpstan-php-ini + { + echo "auto_prepend_file=$GITHUB_WORKSPACE/${{ github.event.repository.name }}/tests/phpstan/prepend-constants.php" + echo "memory_limit=512M" + } > ${{ github.event.repository.name }}/.phpstan-php-ini/php.ini + + - name: Run PHPStan + uses: PrestaShop/.github/.github/actions/php-ci/phpstan@master with: - path: ~/.composer/cache - key: php-composer-cache - - - name: Check composer - run: composer validate - - - run: composer install - - # Docker images prestashop/prestashop may be used, even if the shop remains uninstalled - - name: Execute PHPStan on PrestaShop (Tag ${{ matrix.presta-versions }}) - run: ./tests/phpstan.sh ${{ matrix.presta-versions }} + php-version: ${{ matrix.php_version }} + presta-version: ${{ matrix.presta_version }} + module-name: ${{ github.event.repository.name }} + phpstan-level: '5' + phpstan-config: tests/phpstan/phpstan-${{ matrix.presta_version }}.neon diff --git a/tests/phpstan/prepend-constants.php b/tests/phpstan/prepend-constants.php new file mode 100644 index 00000000..733689a6 --- /dev/null +++ b/tests/phpstan/prepend-constants.php @@ -0,0 +1,11 @@ + Date: Tue, 2 Jun 2026 19:26:33 +0200 Subject: [PATCH 3/9] try to fix phpstan --- tests/phpstan/phpstan-8.1.7.neon | 2 ++ tests/phpstan/phpstan-8.2.x.neon | 2 ++ tests/phpstan/phpstan.neon | 2 -- 3 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 tests/phpstan/phpstan-8.1.7.neon create mode 100644 tests/phpstan/phpstan-8.2.x.neon diff --git a/tests/phpstan/phpstan-8.1.7.neon b/tests/phpstan/phpstan-8.1.7.neon new file mode 100644 index 00000000..c604f7c7 --- /dev/null +++ b/tests/phpstan/phpstan-8.1.7.neon @@ -0,0 +1,2 @@ +includes: + - %currentWorkingDirectory%/tests/phpstan/phpstan.neon diff --git a/tests/phpstan/phpstan-8.2.x.neon b/tests/phpstan/phpstan-8.2.x.neon new file mode 100644 index 00000000..c604f7c7 --- /dev/null +++ b/tests/phpstan/phpstan-8.2.x.neon @@ -0,0 +1,2 @@ +includes: + - %currentWorkingDirectory%/tests/phpstan/phpstan.neon diff --git a/tests/phpstan/phpstan.neon b/tests/phpstan/phpstan.neon index 4e63e794..6648e0fe 100644 --- a/tests/phpstan/phpstan.neon +++ b/tests/phpstan/phpstan.neon @@ -1,5 +1,3 @@ -includes: - - %currentWorkingDirectory%/vendor/prestashop/php-dev-tools/phpstan/ps-module-extension.neon parameters: paths: # From PHPStan 0.12, paths to check are relative to the neon file From 961286d28d8ffea84590c23f527b06581139c8c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20Viguier?= Date: Tue, 2 Jun 2026 19:35:57 +0200 Subject: [PATCH 4/9] no need for retrun --- controllers/front/FrontAjaxGdpr.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/controllers/front/FrontAjaxGdpr.php b/controllers/front/FrontAjaxGdpr.php index be623951..5544012e 100644 --- a/controllers/front/FrontAjaxGdpr.php +++ b/controllers/front/FrontAjaxGdpr.php @@ -36,7 +36,7 @@ public function display() if (Tools::getValue('action') !== 'AddLog') { $this->ajaxRender(); - return false; + return; } $customerId = (int) Tools::getValue('id_customer'); @@ -63,7 +63,5 @@ public function display() } $this->ajaxRender(); - - return true; } } From 060ea79cb136cfca7a4148c395edfd96f4fb765d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20Viguier?= Date: Tue, 2 Jun 2026 19:37:10 +0200 Subject: [PATCH 5/9] fix phpstan 9.1 --- tests/phpstan/phpstan-9.1.x.neon | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/phpstan/phpstan-9.1.x.neon b/tests/phpstan/phpstan-9.1.x.neon index 9a3b677f..be1fde76 100644 --- a/tests/phpstan/phpstan-9.1.x.neon +++ b/tests/phpstan/phpstan-9.1.x.neon @@ -6,3 +6,8 @@ parameters: - '#Strict comparison using === between null and mixed will always evaluate to false\.#' - '#Call to method addJS\(\) on an unknown class PrestaShop\\PrestaShop\\Core\\Context\\LegacyControllerContext\.#' - '#Call to method addCSS\(\) on an unknown class PrestaShop\\PrestaShop\\Core\\Context\\LegacyControllerContext\.#' + - '#Call to method getLanguages\(\) on an unknown class PrestaShop\\PrestaShop\\Core\\Context\\LegacyControllerContext\.#' + - '#Access to property \$php_self on an unknown class PrestaShop\\PrestaShop\\Core\\Context\\LegacyControllerContext\.#' + - '#Parameter \$request of method PrestaShop\\Module\\Psgdpr\\Controller\\Admin\\[a-zA-Z]+::[a-zA-Z]+\(\) has invalid type Symfony\\Component\\HttpFoundation\\Request\.#' + - '#Call to method getContent\(\) on an unknown class Symfony\\Component\\HttpFoundation\\Request\.#' + - '#Call to an undefined static method CartRule::getAllCustomerCartRules\(\)\.#' From 6368f20ca45e6a7d4722117fd2f786e9750982a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20Viguier?= Date: Tue, 2 Jun 2026 20:00:31 +0200 Subject: [PATCH 6/9] fix phpstan PS8 display() return type compatibility Co-Authored-By: Claude Sonnet 4.6 --- tests/phpstan/phpstan-8.1.7.neon | 4 ++++ tests/phpstan/phpstan-8.2.x.neon | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/tests/phpstan/phpstan-8.1.7.neon b/tests/phpstan/phpstan-8.1.7.neon index c604f7c7..cde86899 100644 --- a/tests/phpstan/phpstan-8.1.7.neon +++ b/tests/phpstan/phpstan-8.1.7.neon @@ -1,2 +1,6 @@ includes: - %currentWorkingDirectory%/tests/phpstan/phpstan.neon + +parameters: + ignoreErrors: + - '#Method psgdprFrontAjaxGdprModuleFrontController::display\(\) should return bool but (empty return statement found|return statement is missing)\.#' diff --git a/tests/phpstan/phpstan-8.2.x.neon b/tests/phpstan/phpstan-8.2.x.neon index c604f7c7..cde86899 100644 --- a/tests/phpstan/phpstan-8.2.x.neon +++ b/tests/phpstan/phpstan-8.2.x.neon @@ -1,2 +1,6 @@ includes: - %currentWorkingDirectory%/tests/phpstan/phpstan.neon + +parameters: + ignoreErrors: + - '#Method psgdprFrontAjaxGdprModuleFrontController::display\(\) should return bool but (empty return statement found|return statement is missing)\.#' From 6dea99f230127a6d347f9fae0af35855bda76555 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20Viguier?= Date: Tue, 2 Jun 2026 20:39:32 +0200 Subject: [PATCH 7/9] fix phpstan develop ignoreErrors for PS9+ specific errors Co-Authored-By: Claude Sonnet 4.6 --- tests/phpstan/phpstan-develop.neon | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/phpstan/phpstan-develop.neon b/tests/phpstan/phpstan-develop.neon index 9a3b677f..be1fde76 100644 --- a/tests/phpstan/phpstan-develop.neon +++ b/tests/phpstan/phpstan-develop.neon @@ -6,3 +6,8 @@ parameters: - '#Strict comparison using === between null and mixed will always evaluate to false\.#' - '#Call to method addJS\(\) on an unknown class PrestaShop\\PrestaShop\\Core\\Context\\LegacyControllerContext\.#' - '#Call to method addCSS\(\) on an unknown class PrestaShop\\PrestaShop\\Core\\Context\\LegacyControllerContext\.#' + - '#Call to method getLanguages\(\) on an unknown class PrestaShop\\PrestaShop\\Core\\Context\\LegacyControllerContext\.#' + - '#Access to property \$php_self on an unknown class PrestaShop\\PrestaShop\\Core\\Context\\LegacyControllerContext\.#' + - '#Parameter \$request of method PrestaShop\\Module\\Psgdpr\\Controller\\Admin\\[a-zA-Z]+::[a-zA-Z]+\(\) has invalid type Symfony\\Component\\HttpFoundation\\Request\.#' + - '#Call to method getContent\(\) on an unknown class Symfony\\Component\\HttpFoundation\\Request\.#' + - '#Call to an undefined static method CartRule::getAllCustomerCartRules\(\)\.#' From a1d334fa4c202b1a4a96193e890306344fc57e19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20Viguier?= Date: Wed, 3 Jun 2026 10:18:13 +0200 Subject: [PATCH 8/9] Delete old tests/phpstan.sh --- tests/phpstan.sh | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100755 tests/phpstan.sh diff --git a/tests/phpstan.sh b/tests/phpstan.sh deleted file mode 100755 index 6aec4f8e..00000000 --- a/tests/phpstan.sh +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/bash -PS_VERSION=$1 - -set -e - -# Docker images prestashop/prestashop may be used, even if the shop remains uninstalled -echo "Pull PrestaShop files (Tag ${PS_VERSION})" - -docker rm -f temp-ps || true -docker volume rm -f ps-volume || true - -docker run -tid --rm -v ps-volume:/var/www/html --name temp-ps prestashop/prestashop:$PS_VERSION - -# Clear previous instance of the module in the PrestaShop volume -echo "Clear previous module" - -docker exec -t temp-ps rm -rf /var/www/html/modules/psgdpr - -# Run a container for PHPStan, having access to the module content and PrestaShop sources. -# This tool is outside the composer.json because of the compatibility with PHP 5.6 -echo "Run PHPStan using phpstan-${PS_VERSION}.neon file" - -docker run --rm --volumes-from temp-ps \ - -v $PWD:/var/www/html/modules/psgdpr \ - -e _PS_ROOT_DIR_=/var/www/html \ - --workdir=/var/www/html/modules/psgdpr ghcr.io/phpstan/phpstan \ - analyse \ - --configuration=/var/www/html/modules/psgdpr/tests/phpstan/phpstan-$PS_VERSION.neon From 66705d357663839c2fe239d5b2c101976f4fc8e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20Viguier?= Date: Wed, 3 Jun 2026 10:38:07 +0200 Subject: [PATCH 9/9] Delete unused tests/phpstan/phpstan-8.1.neon & tests/phpstan/phpstan-8.2.neon --- tests/phpstan/phpstan-8.1.neon | 2 -- tests/phpstan/phpstan-8.2.neon | 2 -- 2 files changed, 4 deletions(-) delete mode 100644 tests/phpstan/phpstan-8.1.neon delete mode 100644 tests/phpstan/phpstan-8.2.neon diff --git a/tests/phpstan/phpstan-8.1.neon b/tests/phpstan/phpstan-8.1.neon deleted file mode 100644 index c604f7c7..00000000 --- a/tests/phpstan/phpstan-8.1.neon +++ /dev/null @@ -1,2 +0,0 @@ -includes: - - %currentWorkingDirectory%/tests/phpstan/phpstan.neon diff --git a/tests/phpstan/phpstan-8.2.neon b/tests/phpstan/phpstan-8.2.neon deleted file mode 100644 index c604f7c7..00000000 --- a/tests/phpstan/phpstan-8.2.neon +++ /dev/null @@ -1,2 +0,0 @@ -includes: - - %currentWorkingDirectory%/tests/phpstan/phpstan.neon