eZ\Bundle\EzPublishRestBundle\Features\Context\RestClient\DriverInterface::send PHP Method

send() public method

Send the request.
public send ( )
    public function send();

Usage Example

 /**
  * @When I send the request
  */
 public function sendRequest()
 {
     $requestObject = $this->getRequestObject();
     if (!empty($requestObject)) {
         $this->addObjectToRequestBody($requestObject, $this->restBodyType);
     }
     $this->restDriver->send();
 }