You are here

function job_scheduler_waiting_drush_command in Job Scheduler 8.3

Implements hook_drush_command().

File

modules/job_scheduler_waiting/job_scheduler_waiting.drush.inc, line 11
Command-line tools to aid performing and developing migrations.

Code

function job_scheduler_waiting_drush_command() {
  $items['job-scheduler-waiting-perform'] = [
    'description' => 'Perform the named, waiting the job schedule.',
    'arguments' => [
      'name' => 'Name of the job to perform.',
    ],
    'drupal dependencies' => [
      'job_scheduler_waiting',
    ],
    'aliases' => [
      'jswp',
    ],
  ];
  return $items;
}