You are here

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\payment

Code

public function getCompletionResponse() {
  return $this->response;
}