Beispiel #1
0
 /**
  * @param  string      $Culture
  * @return PaymentCard
  */
 public function setCulture($Culture)
 {
     if ($Culture !== null && !Utils::isCulture($Culture)) {
         throw new \InvalidArgumentException('Culture is invalid');
     }
     $this->Culture = $Culture;
     return $this;
 }