From b5458ee788e90994b4c144feb7e3dfed6dd8f57b Mon Sep 17 00:00:00 2001 From: n Date: Sat, 14 Sep 2024 15:48:36 +0200 Subject: [PATCH] PHP-CS-Fixer fixes --- .forgejo/workflows/lint.yml | 6 +++--- clickat.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/lint.yml b/.forgejo/workflows/lint.yml index 3f6dd80..4c64359 100644 --- a/.forgejo/workflows/lint.yml +++ b/.forgejo/workflows/lint.yml @@ -1,3 +1,4 @@ +--- name: lint run-name: lint is launched by ${{ github.actor }} on: [push] @@ -12,7 +13,7 @@ jobs: - name: Check out repository code uses: actions/checkout@v4 - name: Install linters using Composer - run: | + run: | export COMPOSER_HOME=/tmp echo "{}" > composer.json composer config --no-interaction allow-plugins.bamarni/composer-bin-plugin true @@ -22,6 +23,5 @@ jobs: - name: Lint run: vendor/bin/phplint --no-cache --no-progress --exclude=vendor --verbose - name: PHP CS Fixer - run: vendor/bin/php-cs-fixer fix --dry-run --verbose --diff . + run: vendor/bin/php-cs-fixer check --using-cache no --diff --verbose . - run: echo "🍏 This job's status is ${{ job.status }}." - diff --git a/clickat.php b/clickat.php index b5516ba..6ce3efe 100644 --- a/clickat.php +++ b/clickat.php @@ -18,7 +18,7 @@ function hook_clickat_render_linklist($data) ); foreach ($data['links'] as &$value) { if (strpos($value['description'], '@') !== false) { - foreach($patterns as $nic => $link) { + foreach ($patterns as $nic => $link) { $value['description'] = preg_replace($nic, $link, $value['description']); } }