From a570b6892fad9fb2faff3ec009fc9b2ea27c3e02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Mon, 23 Jun 2025 15:54:24 +0000 Subject: [PATCH] Normalize paths in PHPStan configuration --- phpstan.neon.dist | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/phpstan.neon.dist b/phpstan.neon.dist index c486be5..081483e 100644 --- a/phpstan.neon.dist +++ b/phpstan.neon.dist @@ -5,11 +5,11 @@ parameters: level: 8 paths: - bin/inline-phpstan-ignores - - src - - tests + - src/ + - tests/ excludePaths: analyseAndScan: - - tests/data/* + - tests/data/ tmpDir: cache/phpstan/ checkMissingCallableSignature: true checkUninitializedProperties: true @@ -26,6 +26,6 @@ parameters: - LogicException ignoreErrors: - - # allow uncatched exceptions in tests + - # Allow uncaught exceptions in tests identifier: missingType.checkedException - path: tests/* + path: tests/