PhpDoc icon indicating copy to clipboard operation
PhpDoc copied to clipboard

Comment block not valid

Open DiHalt-ECP opened this issue 7 years ago • 0 comments

Hi. My SublimeLinter phpcs say: "There must be exactly one blank line before the tags in a doc comment".

Have:

/**
 * Permissions for Editor users.
 * @return array
 *   of all permisssions for Editor user role
 */

Need:

/**
 * Permissions for Editor users.
 *
 * @return array
 *   of all permisssions for Editor user role
 */

DiHalt-ECP avatar Oct 27 '18 21:10 DiHalt-ECP