From 8e6e08ee6a7fc06fbc17d251c82b089d8bcf6534 Mon Sep 17 00:00:00 2001 From: Beatrycze Volk Date: Thu, 26 Oct 2023 11:26:40 +0200 Subject: [PATCH] Move phpstan configuration to the correct directory --- {Build => .github}/phpstan.neon | 2 +- .github/workflows/phpstan.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename {Build => .github}/phpstan.neon (83%) diff --git a/Build/phpstan.neon b/.github/phpstan.neon similarity index 83% rename from Build/phpstan.neon rename to .github/phpstan.neon index cc37a8087..46e47bfde 100644 --- a/Build/phpstan.neon +++ b/.github/phpstan.neon @@ -4,4 +4,4 @@ parameters: level: 5 paths: - ../Classes/ - treatPhpDocTypesAsCertain: false \ No newline at end of file + treatPhpDocTypesAsCertain: false diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml index 5c2ac2cb0..8d8861501 100644 --- a/.github/workflows/phpstan.yml +++ b/.github/workflows/phpstan.yml @@ -22,4 +22,4 @@ jobs: - name: PHPStan Static Analysis uses: php-actions/phpstan@v3 with: - configuration: Build/phpstan.neon \ No newline at end of file + configuration: ./.github/phpstan.neon