Skip to content

Commit 36609f9

Browse files
authored
Merge pull request #21 from PUGX/fix-fixer
👷 fix fixer in CI
2 parents 43a934c + abff846 commit 36609f9

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ jobs:
2525
uses: actions/checkout@v4
2626
- name: Fix CS
2727
uses: docker://oskarstark/php-cs-fixer-ga
28+
with:
29+
args: --diff --dry-run
2830
twig-cs-fixer:
2931
runs-on: ubuntu-24.04
3032
name: Twig-CS-Fixer

src/Twig/Filter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ public function getFunctions(): array
1313
new TwigFunction('filter_has', [FilterRuntime::class, 'has']),
1414
new TwigFunction('filter_is', [FilterRuntime::class, 'isSet']),
1515
new TwigFunction('filter_is_not', [FilterRuntime::class, 'isNotSet']),
16-
];
16+
];
1717
}
1818
}

0 commit comments

Comments
 (0)