-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml
More file actions
23 lines (23 loc) · 1.33 KB
/
phpcs.xml
File metadata and controls
23 lines (23 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0"?>
<ruleset name="Project">
<rule ref="vendor/keboola/coding-standard/src/ruleset.xml"/>
<rule ref="SlevomatCodingStandard.TypeHints.ParameterTypeHint">
<properties>
<property name="enableUnionTypeHint" type="bool" value="false" />
<property name="enableMixedTypeHint" type="bool" value="false" />
<property name="enableIntersectionTypeHint" type="bool" value="false" />
<property name="enableStandaloneNullTrueFalseTypeHints" type="bool" value="false" />
</properties>
</rule>
<rule ref="SlevomatCodingStandard.TypeHints.ReturnTypeHint.MissingNativeTypeHint">
<exclude name="SlevomatCodingStandard.TypeHints.ReturnTypeHint.MissingNativeTypeHint.MissingTraversableReturnTypeHintSpecification"/>
<properties>
<property name="enableStaticTypeHint" type="bool" value="false" />
<property name="enableMixedTypeHint" type="bool" value="false" />
<property name="enableUnionTypeHint" type="bool" value="false" />
<property name="enableIntersectionTypeHint" type="bool" value="false" />
<property name="enableNeverTypeHint" type="bool" value="false" />
<property name="enableStandaloneNullTrueFalseTypeHints" type="bool" value="false" />
</properties>
</rule>
</ruleset>