You are here

function commerce_stripe_drush_command in Commerce Stripe 7.2

Same name and namespace in other branches
  1. 7.3 commerce_stripe.drush.inc \commerce_stripe_drush_command()
  2. 7 commerce_stripe.drush.inc \commerce_stripe_drush_command()

Implements hook_drush_command().

File

./commerce_stripe.drush.inc, line 11
Drush integration for the Commerce Stripe module.

Code

function commerce_stripe_drush_command() {
  $items['stripe-download'] = array(
    'description' => dt('Downloads the Stripe PHP library from https://github.com/stripe/stripe-php.'),
  );
  return $items;
}