We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5493a3 commit e79d865Copy full SHA for e79d865
CHANGELOG.md
@@ -2,6 +2,10 @@
2
3
All notable changes to `laravel-phpcs` will be documented in this file
4
5
+## 1.1.0 - 2022-01-26
6
+
7
+- Excluded route files for Generic.CodeAnalysis.UnusedFunctionParameter rule
8
9
## 1.0.0 - 2022-01-25
10
11
- initial release
phpcs.xml
@@ -12,6 +12,7 @@
12
<rule ref="Generic.CodeAnalysis.UnnecessaryFinalModifier"/>
13
<rule ref="Generic.CodeAnalysis.UnusedFunctionParameter">
14
<exclude-pattern>/app/Http/Resources/*\.php</exclude-pattern>
15
+ <exclude-pattern>/routes/*\.php</exclude-pattern>
16
</rule>
17
<rule ref="Generic.CodeAnalysis.UselessOverridingMethod"/>
18
<rule ref="Generic.Commenting.DocComment">
0 commit comments