Skip to content
This repository has been archived by the owner on Oct 25, 2021. It is now read-only.

Implement psr2 multiline function declaration #4

Merged
merged 1 commit into from
Jan 5, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Symfony2/ruleset.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@
<rule ref="Squiz.PHP.LowercasePHPFunctions"/>
<rule ref="Squiz.Scope.MemberVarScope"/>

<!-- Argument lists MAY be split across multiple lines, where each subsequent line is indented once. When doing so, the first item in the list MUST be on the next line, and there MUST be only one argument per line. When the argument list is split across multiple lines, the closing parenthesis and opening brace MUST be placed together on their own line with one space between them. -->
<rule ref="Squiz.Functions.MultiLineFunctionDeclaration"/>

<!-- We provide our own subclass of PEAR's ClassComment and FunctionComment sniff, but these will do: -->
<rule ref="PEAR.Commenting.InlineComment"/>

Expand Down