You are here

RestIncidentStorageInterface.php in Radioactivity 8.3

Same filename and directory in other branches
  1. 4.0.x src/RestIncidentStorageInterface.php

File

src/RestIncidentStorageInterface.php
View source
<?php

namespace Drupal\radioactivity;


/**
 * Defines the incident storage interface.
 */
interface RestIncidentStorageInterface extends IncidentStorageInterface {

  /**
   * Sets the REST endpoint URL.
   *
   * @param string|null $endpoint
   *   The endpoint URL to override the default. Null to return to the default.
   */
  public function setEndpoint($endpoint = NULL);

}

Interfaces

Namesort descending Description
RestIncidentStorageInterface Defines the incident storage interface.