1
0
mirror of synced 2025-01-18 06:21:40 +03:00

To avoid "SpacingAfterParams" error with PHPCS Symfony2 coding standard

Hello,
I added two blank lines in comments two avoid the following error with PHPCS Symfony2 coding standard :
Error Code: SpacingAfterParams
Error Description: Last parameter comment requires a blank new line after it.
This commit is contained in:
Nicolas Nutten 2013-07-22 10:56:18 +02:00
parent fbbb161987
commit eba933bb47

View File

@ -234,6 +234,7 @@ public function <methodName>()
* <description>
*
* @param <variableType>$<variableName>
*
* @return <entity>
*/
public function <methodName>(<methodTypeHint>$<variableName><variableDefault>)
@ -251,6 +252,7 @@ public function <methodName>(<methodTypeHint>$<variableName><variableDefault>)
* <description>
*
* @param <variableType>$<variableName>
*
* @return <entity>
*/
public function <methodName>(<methodTypeHint>$<variableName>)