public function WSCall::getEndpoint in Web Service Data 8
Same name and namespace in other branches
- 2.0.x src/Entity/WSCall.php \Drupal\wsdata\Entity\WSCall::getEndpoint()
Return the endpoint from the active wsserver.
Overrides WSCallInterface::getEndpoint
File
- src/
Entity/ WSCall.php, line 108
Class
- WSCall
- Defines the Web Service Call entity.
Namespace
Drupal\wsdata\EntityCode
public function getEndpoint() {
return $this->wsserverInst ? $this->wsserverInst
->getEndpoint() : FALSE;
}