Ignore:
Timestamp:
2014/08/27 18:45:58 (10 years ago)
Author:
kimoto
Message:

#2448 typo修正・ソース整形・ソースコメントの改善 for 2.13.3

Scrutinizer Auto-Fixes

This patch was automatically generated as part of the following inspection:
 https://scrutinizer-ci.com/g/nobuhiko/EC-CUBE/inspections/d8722894-69a6-4b1b-898d-43618035c60d

Enabled analysis tools:

  • PHP Analyzer
  • PHP PDepend
  • PHP Similarity Analyzer
  • PHP Change Tracking Analyzer
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/data/class/SC_SendMail.php

    r23546 r23605  
    6363 
    6464    // 送信先の設定 
     65 
     66    /** 
     67     * @param string $key 
     68     */ 
    6569    public function setRecip($key, $recipient) 
    6670    { 
     
    8488 
    8589    // CCの設定 
     90 
     91    /** 
     92     * @param string $cc 
     93     */ 
    8694    public function setCc($cc, $cc_name = '') 
    8795    { 
     
    93101 
    94102    // BCCの設定 
     103 
     104    /** 
     105     * @param string $bcc 
     106     */ 
    95107    public function setBCc($bcc) 
    96108    { 
     
    102114 
    103115    // Reply-Toの設定 
     116 
     117    /** 
     118     * @param string $reply_to 
     119     */ 
    104120    public function setReplyTo($reply_to) 
    105121    { 
     
    165181 
    166182    // 名前<メールアドレス>の形式を生成 
     183 
     184    /** 
     185     * @param string $name 
     186     */ 
    167187    public function getNameAddress($name, $mail_address) 
    168188    { 
     
    296316     * 設定された情報を利用して, メールを送信する. 
    297317     * 
    298      * @return void 
     318     * @return boolean 
    299319     */ 
    300320    public function sendMail($isHtml = false) 
     
    320340     * HTMLメール送信を実行する. 
    321341     * 
    322      * @return void 
     342     * @return boolean 
    323343     */ 
    324344    public function sendHtmlMail() 
Note: See TracChangeset for help on using the changeset viewer.