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