You are here

public function WSCall::getData in Web Service Data 8

Same name and namespace in other branches
  1. 2.0.x src/Entity/WSCall.php \Drupal\wsdata\Entity\WSCall::getData()
1 call to WSCall::getData()
WSCall::call in src/Entity/WSCall.php
Make the web service call.

File

src/Entity/WSCall.php, line 306

Class

WSCall
Defines the Web Service Call entity.

Namespace

Drupal\wsdata\Entity

Code

public function getData($key = NULL) {
  if (isset($this->wsdecoderInst)) {
    return $this->wsdecoderInst
      ->getData($key);
  }
  return NULL;
}