You are here

public function FeedsState::__construct in Feeds 8.2

Constructor, initialize variables.

File

lib/Drupal/feeds/FeedsState.php, line 33

Class

FeedsState
Status of an import or clearing operation on a source.

Namespace

Drupal\feeds

Code

public function __construct() {
  $this->progress = FEEDS_BATCH_COMPLETE;
  $this->total = $this->created = $this->updated = $this->deleted = $this->skipped = $this->failed = 0;
}