コード例 #1
0
ファイル: Customer.php プロジェクト: alex63530/thelia
 public function setEmail($email, $force = false)
 {
     $email = trim($email);
     if (($this->isNew() || $force === true) && ($email === null || $email == "")) {
         throw new InvalidArgumentException("customer email is mandatory");
     }
     if (!$this->isNew() && $force === false) {
         return $this;
     }
     return parent::setEmail($email);
 }