This commit is contained in:
parent
9e67ed202b
commit
b9348c9e91
2 changed files with 5 additions and 5 deletions
|
@ -1,3 +1,4 @@
|
|||
---
|
||||
name: lint
|
||||
run-name: lint is launched by ${{ github.actor }}
|
||||
on: [push]
|
||||
|
@ -12,16 +13,15 @@ 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
|
||||
composer require --dev bamarni/composer-bin-plugin
|
||||
composer bin phplint require --dev overtrue/phplint
|
||||
composer require --dev friendsofphp/php-cs-fixer
|
||||
composer require --dev friendsofphp/php-cs-fixer==2.19.0 --with-all-dependencies
|
||||
- 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: PHP_CS_FIXER_IGNORE_ENV=yes vendor/bin/php-cs-fixer fix --dry-run --verbose --diff .
|
||||
- run: echo "🍏 This job's status is ${{ job.status }}."
|
||||
|
||||
|
|
|
@ -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']);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue