function LinearHistory::deleteAll

Overrides CheckpointListInterface::deleteAll

File

core/lib/Drupal/Core/Config/Checkpoint/LinearHistory.php, line 137

Class

LinearHistory
A chronological list of Checkpoint objects.

Namespace

Drupal\Core\Config\Checkpoint

Code

public function deleteAll() : static {
    $this->checkpoints = [];
    $this->activeCheckpoint = NULL;
    $this->state
        ->delete(self::CHECKPOINT_KEY);
    return $this;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.