9ad93d944e637ceba5eb129bb140d43c94823997
[yaffs-website] / vendor / drush / drush / tests / hooks / magic_help_alter / magic.drush.inc
1 <?php
2
3 /**
4  * Implement hook_drush_help_alter()
5  *
6  * @param type $command
7  */
8 function magic_drush_help_alter(&$command) {
9   if ($command['command'] = 'version') {
10     $command['options']['magic'] = 'Some magic flag';
11   }
12 }