Ignore:
Timestamp:
2014/08/27 18:45:58 (12 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
Location:
branches/version-2_13-dev/data/class/api
Files:
4 edited

Legend:

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

    r23603 r23605  
    6969    abstract public function getResponseGroupName(); 
    7070 
     71    /** 
     72     * @param SC_FormParam_Ex $objFormParam 
     73     */ 
    7174    abstract protected function lfInitParam(&$objFormParam); 
    7275 
     
    9497    } 
    9598 
     99    /** 
     100     * @param string $key 
     101     */ 
    96102    protected function setResponse($key, $data) 
    97103    { 
  • branches/version-2_13-dev/data/class/api/SC_Api_Operation.php

    r23546 r23605  
    8080     * 
    8181     * @param  string  $login_email ログインメールアドレス 
    82      * @param  string  $password    ログインパスワード 
     82     * @param  string  $login_password    ログインパスワード 
    8383     * @return boolean ログインに成功した場合 true; 失敗した場合 false 
    8484     */ 
     
    274274     * 
    275275     * @param object SC_FormParam 
     276     * @param SC_FormParam_Ex $objFormParam 
    276277     * @return void 
    277278     */ 
     
    409410 
    410411    // TODO: ここらへんは SC_Displayに持って行きたい所だが・・ 
     412 
     413    /** 
     414     * @param string $type 
     415     * @param string $response_outer_name 
     416     */ 
    411417    public function sendApiResponse($type, $response_outer_name, &$arrResponse) 
    412418    { 
  • branches/version-2_13-dev/data/class/api/SC_Api_Utils.php

    r23546 r23605  
    5050     * オペレーション名に対応した追加の設定情報を取得する 
    5151     * 
    52      * @param  string $access_key 
    5352     * @return string 秘密鍵文字列 
    5453     */ 
     
    112111     * APIログ 
    113112     * 
    114      * @param text $msg            出力文字列 
     113     * @param string $msg            出力文字列 
    115114     * @param text $operation_name 
    116115     @ @rturn void 
  • branches/version-2_13-dev/data/class/api/operations/ItemSearch.php

    r23584 r23605  
    109109     * 商品一覧の取得 
    110110     * 
     111     * @param integer $disp_number 
     112     * @param integer $linemax 
     113     * @param SC_Product_Ex $objProduct 
    111114     * @return array 
    112115     * TODO: LC_Page_Products_List::lfGetProductsList() と共通化 
Note: See TracChangeset for help on using the changeset viewer.