f2a5291a29ac3a111d04e203af60ca174e198289
[yaffs-website] / vendor / drush / drush / src / Drupal / Commands / core / BatchCommands.php
1 <?php
2 namespace Drush\Drupal\Commands\core;
3
4 use Drush\Commands\DrushCommands;
5
6 class BatchCommands extends DrushCommands
7 {
8
9     /**
10      * Process operations in the specified batch set.
11      *
12      * @command batch:process
13      * @aliases batch-process
14      * @param $batch_id The batch id that will be processed.
15      * @hidden
16      */
17     public function process($batch_id)
18     {
19         return drush_batch_command($batch_id);
20     }
21 }