class Checkpoint
A value object to store information about a checkpoint.
@internal This API is experimental.
Hierarchy
- class \Drupal\Core\Config\Checkpoint\Checkpoint
Expanded class hierarchy of Checkpoint
1 file declares its use of Checkpoint
- RecipeCommand.php in core/
lib/ Drupal/ Core/ Recipe/ RecipeCommand.php
File
-
core/
lib/ Drupal/ Core/ Config/ Checkpoint/ Checkpoint.php, line 13
Namespace
Drupal\Core\Config\CheckpointView source
final class Checkpoint {
/**
* Constructs a checkpoint object.
*
* @param string $id
* The checkpoint's ID.
* @param \Stringable|string $label
* The human-readable label.
* @param int $timestamp
* The timestamp when the checkpoint was created.
* @param string|null $parent
* The ID of the checkpoint's parent.
*/
public function __construct(string $id, \Stringable|string $label, int $timestamp, ?string $parent) {
}
}
Members
Title Sort descending | Modifiers | Object type | Summary |
---|---|---|---|
Checkpoint::__construct | public | function | Constructs a checkpoint object. |