You are here

public function RestfulDataProviderEFQ::remove in RESTful 7

Remove the item from the data source.

Parameters

mixed $id: The unique ID for the item.

Overrides RestfulBase::remove

File

plugins/restful/RestfulDataProviderEFQ.php, line 387
Contains \RestfulDataProviderEFQ

Class

RestfulDataProviderEFQ
@file Contains \RestfulDataProviderEFQ

Code

public function remove($id) {

  // Defer the actual implementation to \RestfulEntityBase.
  $this
    ->deleteEntity($id);
}