public function OperationResult::getCompletionResponse in Payment 8.2
Gets the response to complete the operation.
Return value
\Drupal\payment\Response\ResponseInterface|null A response (only if self::isInProgress() returns TRUE) or NULL if the operation cannot be completed (anymore).
Overrides OperationResultInterface::getCompletionResponse
File
- src/
OperationResult.php, line 39
Class
- OperationResult
- Provides an operation result.
Namespace
Drupal\paymentCode
public function getCompletionResponse() {
return $this->response;
}