You are here

function phpstorm_drush_help_alter in http:BL 8

Implements hook_drush_help_alter().

File

drush/phpstorm.drush.inc, line 27
Generate PhpStorm metadata file.

Code

function phpstorm_drush_help_alter(&$command) {
  if ($command['command'] == 'cache-rebuild') {
    $command['options']['storm'] = 'Write a new PHPstorm metadata file to Drupal root.';
  }
}