You are here

protected function VersionById::getRevisionId in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/jsonapi/src/Revisions/VersionById.php \Drupal\jsonapi\Revisions\VersionById::getRevisionId()
  2. 9 core/modules/jsonapi/src/Revisions/VersionById.php \Drupal\jsonapi\Revisions\VersionById::getRevisionId()

File

core/modules/jsonapi/src/Revisions/VersionById.php, line 21

Class

VersionById
Defines a revision ID implementation for entity revision ID values.

Namespace

Drupal\jsonapi\Revisions

Code

protected function getRevisionId(EntityInterface $entity, $version_argument) {
  if (!is_numeric($version_argument)) {
    throw new InvalidVersionIdentifierException('The revision ID must be an integer.');
  }
  return $version_argument;
}