RestIncidentStorageInterface.php in Radioactivity 4.0.x
Same filename and directory in other branches
Namespace
Drupal\radioactivityFile
src/RestIncidentStorageInterface.phpView 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
Name | Description |
---|---|
RestIncidentStorageInterface | Defines the incident storage interface. |