コード例 #1
0
ファイル: CartItem.php プロジェクト: inklabs/kommerce-core
 public function addAttachment(Attachment $attachment)
 {
     if (!$this->areAttachmentsEnabled()) {
         throw AttachmentException::notAllowed();
     }
     $this->attachments->add($attachment);
 }
コード例 #2
0
 /**
  * @param Attachment $attachment
  */
 public function addAttachment(Attachment $attachment)
 {
     $this->attachments->add($attachment);
 }