You are here

public function DataProviderDecorator::remove in RESTful 7.2

Delete operation.

Parameters

mixed $identifier: The ID of thing to be removed.

Overrides CrudInterface::remove

File

src/Plugin/resource/DataProvider/DataProviderDecorator.php, line 182
Contains \Drupal\restful\Plugin\resource\DataProvider\DataProviderDecorator.

Class

DataProviderDecorator

Namespace

Drupal\restful\Plugin\resource\DataProvider

Code

public function remove($identifier) {
  $this->decorated
    ->remove($identifier);
}