You are here

public static function VerificationResult::unknown in Commerce Core 8.2

Constructs an unkown result.

Parameters

int $timestamp: The timestamp.

array $data: The data. Optional.

Return value

static

2 calls to VerificationResult::unknown()
EuropeanUnionVat::doVerify in modules/tax/src/Plugin/Commerce/TaxNumberType/EuropeanUnionVat.php
Performs the tax number verification.
SerbianVat::doVerify in modules/tax/tests/modules/commerce_tax_test/src/Plugin/Commerce/TaxNumberType/SerbianVat.php
Performs the tax number verification.

File

modules/tax/src/Plugin/Commerce/TaxNumberType/VerificationResult.php, line 94

Class

VerificationResult
Represents a tax number verification result.

Namespace

Drupal\commerce_tax\Plugin\Commerce\TaxNumberType

Code

public static function unknown(int $timestamp, array $data = []) : VerificationResult {
  return new static(self::STATE_UNKNOWN, $timestamp, $data);
}