You are here

public function WSConnectorSOAP::getMethods in Web Service Data 2.0.x

Same name and namespace in other branches
  1. 8 src/Plugin/WSConnector/WSConnectorSOAP.php \Drupal\wsdata\Plugin\WSConnector\WSConnectorSOAP::getMethods()

Return available methods supported by the connector.

Overrides WSConnectorSimpleHTTP::getMethods

File

src/Plugin/WSConnector/WSConnectorSOAP.php, line 22

Class

WSConnectorSOAP
REST Connector.

Namespace

Drupal\wsdata\Plugin\WSConnector

Code

public function getMethods() {
  return [
    'create',
    'read',
    'update',
    'delete',
    'index',
  ];
}