From c249151eb4349a71664cd2c1e04e347315c73bfe Mon Sep 17 00:00:00 2001 From: Brandon Shipley Date: Fri, 23 Jan 2026 17:54:57 -0800 Subject: [PATCH] phpstan fixes - no errors now --- .gitea/workflows/ci.yaml | 2 +- phpstan.neon | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 984ca21..1f32cd5 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -9,7 +9,7 @@ jobs: testsuite: runs-on: ubuntu-latest strategy: - fail-fast: true + fail-fast: false matrix: php-version: ['8.2', '8.4'] # db-type: ['mysql'] diff --git a/phpstan.neon b/phpstan.neon index fb2534f..e5c8b87 100644 --- a/phpstan.neon +++ b/phpstan.neon @@ -1,8 +1,10 @@ includes: - vendor/cakedc/cakephp-phpstan/extension.neon + parameters: level: 5 paths: - src + bootstrapFiles: + - tests/bootstrap.php treatPhpDocTypesAsCertain: false -