2019-11-12 22:24:06 +01:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<ruleset>
|
|
|
|
<description>Engelsystem PHP coding standard</description>
|
|
|
|
|
|
|
|
<file>config</file>
|
|
|
|
<file>db</file>
|
2022-10-18 19:15:22 +02:00
|
|
|
<file>includes</file>
|
2019-11-12 22:24:06 +01:00
|
|
|
<file>public/index.php</file>
|
|
|
|
<file>src</file>
|
|
|
|
<file>tests</file>
|
2022-12-15 19:50:56 +01:00
|
|
|
<exclude-pattern>/config/config.php</exclude-pattern>
|
2019-11-12 22:24:06 +01:00
|
|
|
|
|
|
|
<rule ref="PSR12" />
|
2022-04-16 10:38:28 +02:00
|
|
|
<rule ref="SlevomatCodingStandard.Namespaces.UnusedUses">
|
|
|
|
<properties>
|
|
|
|
<property name="searchAnnotations" value="true"/>
|
|
|
|
</properties>
|
|
|
|
</rule>
|
2022-07-11 14:34:14 +02:00
|
|
|
<rule ref="SlevomatCodingStandard.Variables.UnusedVariable">
|
|
|
|
<properties>
|
|
|
|
<property name="ignoreUnusedValuesWhenOnlyKeysAreUsedInForeach" value="true" />
|
|
|
|
</properties>
|
2022-12-14 00:28:34 +01:00
|
|
|
</rule>
|
|
|
|
<rule ref="Generic.Files.LineLength.TooLong">
|
|
|
|
<exclude-pattern>/includes</exclude-pattern>
|
|
|
|
</rule>
|
|
|
|
<rule ref="SlevomatCodingStandard.TypeHints.ParameterTypeHint">
|
|
|
|
<exclude-pattern>/includes</exclude-pattern>
|
|
|
|
<exclude name="SlevomatCodingStandard.TypeHints.ParameterTypeHint.MissingTraversableTypeHintSpecification" />
|
|
|
|
</rule>
|
2022-12-14 19:15:20 +01:00
|
|
|
<rule ref="SlevomatCodingStandard.TypeHints.ReturnTypeHint">
|
|
|
|
<exclude-pattern>/includes</exclude-pattern>
|
|
|
|
<exclude name="SlevomatCodingStandard.TypeHints.ReturnTypeHint.MissingTraversableTypeHintSpecification" />
|
|
|
|
</rule>
|
2022-12-15 19:50:56 +01:00
|
|
|
<rule ref="SlevomatCodingStandard.TypeHints.PropertyTypeHint">
|
|
|
|
<exclude-pattern>/includes</exclude-pattern>
|
|
|
|
<exclude name="SlevomatCodingStandard.TypeHints.PropertyTypeHint.MissingTraversableTypeHintSpecification" />
|
|
|
|
</rule>
|
2022-12-15 19:57:02 +01:00
|
|
|
<rule ref="SlevomatCodingStandard.Classes.RequireConstructorPropertyPromotion" />
|
2022-12-14 00:28:34 +01:00
|
|
|
<rule ref="SlevomatCodingStandard.Commenting.EmptyComment" />
|
2022-12-15 20:20:33 +01:00
|
|
|
<rule ref="SlevomatCodingStandard.Commenting.UselessFunctionDocComment" />
|
2022-12-25 11:59:45 +01:00
|
|
|
<rule ref="Generic.Formatting.SpaceAfterCast" />
|
2023-02-05 18:03:00 +01:00
|
|
|
<rule ref="SlevomatCodingStandard.Arrays.TrailingArrayComma"/>
|
|
|
|
<rule ref="SlevomatCodingStandard.Arrays.SingleLineArrayWhitespace"/>
|
2023-02-05 16:34:16 +01:00
|
|
|
<rule ref="Squiz.Strings.DoubleQuoteUsage" />
|
2023-02-03 20:41:59 +01:00
|
|
|
<rule ref="SlevomatCodingStandard.TypeHints.DeclareStrictTypes">
|
|
|
|
<exclude-pattern>/includes</exclude-pattern>
|
|
|
|
<properties>
|
|
|
|
<property name="spacesCountAroundEqualsSign" value="0" />
|
|
|
|
</properties>
|
|
|
|
</rule>
|
2019-11-12 22:24:06 +01:00
|
|
|
</ruleset>
|