You are here

public function MarstonEncryption::setErrors in Ubercart 8.4

Mutator for errors property.

Parameters

array $errors: Array of text strings containing error messages.

Return value

$this

Overrides EncryptionInterface::setErrors

File

uc_store/src/MarstonEncryption.php, line 136

Class

MarstonEncryption
Deprecated. Handles encryption of credit-card information.

Namespace

Drupal\uc_store

Code

public function setErrors(array $errors) {
  $this->errors = $errors;
  return $this;
}