Files
Jason Q a89ae9751b Fixes linting across all of PHP, along with trivial fixes. (#6039)
Fixes linting across all of PHP, along with trivial fixes to typos, variable names, style,etc. There are still plenty of logical and syntactical errors still, but those will be covered service by service in individual issues.
2024-02-05 12:49:20 -05:00

24 lines
841 B
XML

<?xml version="1.0"?>
<ruleset name="PHP_CodeSniffer">
<rule ref="PSR12">
<exclude name="PSR12.Files.FileHeader.SpacingAfterBlock"/>
<exclude name="PSR1.Files.SideEffects.FoundWithSymbols"/>
</rule>
<exclude-pattern>*/vendor/*</exclude-pattern>
<exclude-pattern>bootstrap/cache/*</exclude-pattern>
<exclude-pattern>bootstrap/autoload.php</exclude-pattern>
<exclude-pattern>*/migrations/*</exclude-pattern>
<exclude-pattern>*/seeds/*</exclude-pattern>
<exclude-pattern>*.blade.php</exclude-pattern>
<exclude-pattern>*.js</exclude-pattern>
<exclude-pattern>*/storage/*</exclude-pattern>
<exclude-pattern>*/public/*</exclude-pattern>
<rule ref="PSR1.Methods.CamelCapsMethodName">
<exclude-pattern>./tests/*</exclude-pattern>
</rule>
<arg value="p"/>
</ruleset>