You are here

public function MarstonEncryption::setModulus in Ubercart 8.4

Mutator for mod property.

File

uc_store/src/MarstonEncryption.php, line 174

Class

MarstonEncryption
Deprecated. Handles encryption of credit-card information.

Namespace

Drupal\uc_store

Code

public function setModulus($mod) {
  $this->mod = (int) abs($mod);
  return $this;
}