You are here

FeedsDirectBatch.php in Feeds 8.3

Namespace

Drupal\feeds

File

src/FeedsDirectBatch.php
View source
<?php

namespace Drupal\feeds;


/**
 * A batch task to be executed directly.
 */
class FeedsDirectBatch extends FeedsBatchBase {

  /**
   * {@inheritdoc}
   */
  public function run() {
    foreach ($this->operations as $operation) {
      $this->executable
        ->processItem($this->feed, $operation['stage'], $operation['params']);
    }
  }

}

Classes

Namesort descending Description
FeedsDirectBatch A batch task to be executed directly.