getCustomerData(); } /** * Send the request with specified data * * @param mixed $data The data to send * @return CustomerResponse */ public function sendData($data) { $response = $this->braintree->customer()->create($data); return $this->response = new CustomerResponse($this, $response); } }