From bfd68409a5e72ecac8c26fd3e9f9af4d329cd0fb Mon Sep 17 00:00:00 2001 From: Matthias Pigulla Date: Mon, 26 Aug 2024 19:29:04 +0200 Subject: [PATCH] Nutze Docker-Image von friendsofphp/php-cs-fixer MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Automatische erstellte Änderung über https://github.com/webfactory/bfg9000/pull/9 (Case 174703) --- .github/workflows/fix-cs-php.yml | 4 +++- .php-cs-fixer.dist.php | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/fix-cs-php.yml b/.github/workflows/fix-cs-php.yml index a5d933c..e4f795f 100644 --- a/.github/workflows/fix-cs-php.yml +++ b/.github/workflows/fix-cs-php.yml @@ -21,7 +21,9 @@ jobs: ref: ${{ github.head_ref }} - name: Run PHP-CS-Fixer - uses: docker://oskarstark/php-cs-fixer-ga + uses: docker://ghcr.io/php-cs-fixer/php-cs-fixer:3.62.0-php8.3 + with: + args: "fix --show-progress=dots" - name: Commit and push back changes uses: stefanzweifel/git-auto-commit-action@v5 diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index 35ba6ce..f3d74bc 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -1,8 +1,10 @@ setParallelConfig(PhpCsFixer\Runner\Parallel\ParallelConfigFactory::detect()) ->setRules([ '@Symfony' => true, + 'phpdoc_separation' => false, '@Symfony:risky' => true, 'array_syntax' => array('syntax' => 'short'), 'no_unreachable_default_argument_value' => false,