Skip to content

Commit

Permalink
Fix cs
Browse files Browse the repository at this point in the history
  • Loading branch information
odan committed Jan 7, 2023
1 parent d0f879a commit d75e4dd
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions phpcs.xml
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
<?xml version="1.0"?>
<ruleset name="Coding Standard">
<arg name="basepath" value="."/>
<arg name="colors"/>
<arg value="sp"/>
<arg name="basepath" value="."/>
<arg name="colors"/>
<arg value="sp"/>

<config name="ignore_warnings_on_exit" value="1"/>
<config name="ignore_warnings_on_exit" value="1"/>

<file>./src</file>
<file>./tests</file>
<file>./src</file>
<file>./tests</file>

<exclude-pattern>*/tests/diffs/*$</exclude-pattern>
<exclude-pattern>*/tests/schema.php</exclude-pattern>
<rule ref="PSR2"></rule>
<rule ref="PSR12"></rule>
<exclude-pattern>*/tests/diffs/*$</exclude-pattern>
<exclude-pattern>*/tests/TestCase/schema.php</exclude-pattern>
<rule ref="PSR2"></rule>
<rule ref="PSR12"></rule>

<rule ref="PSR2">
<exclude name="PSR2.ControlStructures.ControlStructureSpacing.SpacingAfterOpenBrace"/>
</rule>
</ruleset>

0 comments on commit d75e4dd

Please sign in to comment.