Skip to content

Commit bf7400e

Browse files
committed
Enforce dock block style
1 parent c6e1d46 commit bf7400e

File tree

1 file changed

+26
-1
lines changed

1 file changed

+26
-1
lines changed

phpcs.xml

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,30 @@
6565
<rule ref="SlevomatCodingStandard.Whitespaces.DuplicateSpaces"/>
6666
<rule ref="SlevomatCodingStandard.Variables.UnusedVariable"/>
6767
<rule ref="SlevomatCodingStandard.Variables.UselessVariable"/>
68+
<rule ref="SlevomatCodingStandard.Commenting.DocCommentSpacing">
69+
<properties>
70+
<property name="linesCountBeforeFirstContent" value="0"/>
71+
<property name="linesCountAfterLastContent" value="0"/>
72+
<property name="linesCountBetweenDescriptionAndAnnotations" value="1"/>
73+
<property name="linesCountBetweenAnnotationsGroups" value="1"/>
74+
<property name="annotationsGroups" type="array">
75+
<element value="
76+
@ORM\,
77+
@ODM\,
78+
"/>
79+
<element value="
80+
@link,
81+
@internal,
82+
@deprecated,
83+
@see,
84+
@uses,
85+
"/>
86+
<element value="
87+
@param,
88+
@throws,
89+
@return,
90+
"/>
91+
</property>
92+
</properties>
93+
</rule>
6894
</ruleset>
69-

0 commit comments

Comments
 (0)