123456789101112131415161718192021222324252627 |
- <?xml version="1.0"?>
- <ruleset name="phpDocumentor">
- <description>The coding standard for phpDocumentor.</description>
- <file>src</file>
- <file>tests</file>
- <arg value="p"/>
- <rule ref="PSR2" />
- <rule ref="Doctrine">
- <exclude name="SlevomatCodingStandard.TypeHints.UselessConstantTypeHint.UselessDocComment" />
- </rule>
- <rule ref="PSR1.Methods.CamelCapsMethodName.NotCamelCaps">
- <exclude-pattern>tests/phpDocumentor/GraphViz/Test/GraphTest\.php</exclude-pattern>
- </rule>
- <rule ref="SlevomatCodingStandard.TypeHints.TypeHintDeclaration.MissingTraversableReturnTypeHintSpecification">
- <exclude-pattern>tests/phpDocumentor/PHPStan/MethodReflectionExtensionTest\.php</exclude-pattern>
- </rule>
- <rule ref="Generic.Formatting.SpaceAfterNot">
- <properties>
- <property name="spacing" value="0" />
- </properties>
- </rule>
- </ruleset>
|