mirror of
https://github.com/SkillDisplay/PHPToolKit.git
synced 2024-11-14 05:26:08 +01:00
Daniel Siepmann
691adc00a6
This prevents unnecessary merge conflicts in future. Also code follows a simple formatting rule set and is easier to read.
14 lines
346 B
XML
14 lines
346 B
XML
<?xml version="1.0"?>
|
|
<ruleset name="project">
|
|
<description>This project coding standard</description>
|
|
|
|
<file>src/</file>
|
|
<file>tests/</file>
|
|
|
|
<arg name="encoding" value="utf-8" />
|
|
<arg name="extensions" value="php" />
|
|
|
|
<rule ref="PSR12">
|
|
<exclude name="Generic.Files.LineLength.TooLong" />
|
|
</rule>
|
|
</ruleset>
|