Skip to content

Commit

Permalink
Added rule to disallow the use of variables without camel case.
Browse files Browse the repository at this point in the history
  • Loading branch information
mreduar committed Oct 20, 2022
1 parent 66b3b42 commit 461bbb3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

All notable changes to `laravel-phpcs` will be documented in this file

## 1.8.0 - 2022-10-20
- Added rule to disallow the use of variables without camel case.

## 1.7.2 - 2022-10-17
- Multiple parameters are now supported on the same line in multi-line functions.

Expand Down
1 change: 1 addition & 0 deletions phpcs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@
<rule ref="Squiz.WhiteSpace.ScopeKeywordSpacing"/>
<rule ref="Squiz.WhiteSpace.SemicolonSpacing"/>
<rule ref="Squiz.Strings.DoubleQuoteUsage.NotRequired"/>
<rule ref="Squiz.NamingConventions.ValidVariableName.NotCamelCaps"/>
<rule ref="Zend.Files.ClosingTag"/>

<!-- Custom Sniffs -->
Expand Down

0 comments on commit 461bbb3

Please sign in to comment.