mirror of
https://github.com/humhub/humhub.git
synced 2025-02-24 11:14:00 +01:00
17 lines
358 B
XML
17 lines
358 B
XML
|
<?xml version="1.0"?>
|
||
|
<ruleset name="HumHub">
|
||
|
<description>HumHub coding standard.</description>
|
||
|
|
||
|
<!-- Include PSR-1 -->
|
||
|
<rule ref="PSR1"/>
|
||
|
|
||
|
<!-- Include PSR-2 -->
|
||
|
<rule ref="PSR2"/>
|
||
|
|
||
|
<!-- Prefer [] instead array() -->
|
||
|
<rule ref="Generic.Arrays.DisallowLongArraySyntax.Found">
|
||
|
<type>warning</type>
|
||
|
</rule>
|
||
|
|
||
|
</ruleset>
|