Format should be "* Implements hook_foo()." or "Implements hook_foo_BAR_ID_bar() for xyz_bar()."

This doesn't consider drush hooks

Comments

fluxsauce’s picture

In 7.x-1.0-alpha2,

/**
 * Implements hook_drush_command().
 */
function make_drush_command() {

passes correctly, no complaints, while

/**
 * Implements drush_hook_post_COMMAND() for the make command.
 */
function drush_make_post_make($makefile = NULL, $build_path = NULL) {

fails correctly. Do you have an example where it fails incorrectly?

klausi’s picture

Status: Active » Closed (works as designed)

Please reopen if this is still an issue.