From 535fa4f4f2ef193ea0b27b7a20cb10b38b8590f7 Mon Sep 17 00:00:00 2001 From: Igor Hrcek Date: Tue, 12 Apr 2022 16:38:32 +0200 Subject: [PATCH] feat: Added PSR12 as a default standard for phpcs --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 03e08d0..793cee1 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -24,4 +24,4 @@ jobs: - name: Lint and run checks with phpstan run: phpstan analyse src --level=5 - name: Check codestyle with phpcs - run: phpcs src \ No newline at end of file + run: phpcs src --standard=PSR12 --exclude=Generic.Files.LineLength \ No newline at end of file