You are here

function bootstrap_drush_command in Express 8

Implements hook_drush_command().

File

themes/contrib/bootstrap/bootstrap.drush.inc, line 13
Drupal Bootstrap Drush commands.

Code

function bootstrap_drush_command() {
  $items['bootstrap-generate-docs'] = [
    'description' => dt('Generates markdown documentation for the Drupal based code.'),
    'arguments' => [
      'type' => 'The specific type of documentation to generate, defaults to "all". Can be: "all", "settings".',
    ],
    'aliases' => [
      'bs-docs',
    ],
  ];
  return $items;
}