You are here

ConfigEntityRevisionsRouteAlterBase.php in Config Entity Revisions 8.2

File

src/ConfigEntityRevisionsRouteAlterBase.php
View source
<?php

namespace Drupal\config_entity_revisions;

class ConfigEntityRevisionsRouteAlterBase {

  /**
   * The list of routes in which we need to add a revision ID.
   *
   * Should match the list in the RouteSubscriber.
   *
   * @var array
   */
  protected static $specific_revision_routes = [];

  /**
   * The name of the parameter for the entity.
   *
   * @var string $parameter_name
   */
  protected static $parameter_name = '';

}