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/db
Files:
4 edited

Legend:

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

    r23546 r23605  
    3535     * 
    3636     * @param  string $db_type 任意のインスタンスを返したい場合は DB_TYPE 文字列を指定 
    37      * @return mixed  DBFactory インスタンス 
     37     * @return SC_DB_DBFactory  DBFactory インスタンス 
    3838     */ 
    3939    public function getInstance($db_type = DB_TYPE) 
     
    5858     * $dsn が空ではない場合は, $dsn の値を返す. 
    5959     * 
    60      * @param  mixed $dsn データソース名 
    61      * @return mixed データソース名またはDB接続パラメータの連想配列 
     60     * @param  string $dsn データソース名 
     61     * @return string データソース名またはDB接続パラメータの連想配列 
    6262     */ 
    6363    public function getDSN($dsn = '') 
     
    158158     * 文字列連結を行う. 
    159159     * 
    160      * @param  array  $columns 連結を行うカラム名 
     160     * @param  string[]  $columns 連結を行うカラム名 
    161161     * @return string 連結後の SQL 文 
    162162     */ 
  • branches/version-2_13-dev/data/class/db/SC_DB_MasterData.php

    r23546 r23605  
    223223     * 
    224224     * @param  string $name マスターデータ名 
    225      * @return bool   消去した場合 true 
     225     * @return boolean|null   消去した場合 true 
    226226     */ 
    227227    public function clearCache($name) 
     
    247247     * 
    248248     * @param string $name          マスターデータ名 
    249      * @param array  $masterData    マスターデータ 
    250249     * @param bool   $isDefine      定数を生成する場合 true 
    251      * @param array  $commentColumn [0] => キー, [1] => コメント文字列, 
     250     * @param string[]  $commentColumn [0] => キー, [1] => コメント文字列, 
    252251     *                             [2] => 表示順 を表すカラム名を格納した配列 
    253252     * @return bool キャッシュの生成に成功した場合 true 
  • branches/version-2_13-dev/data/class/db/dbfactory/SC_DB_DBFactory_MYSQL.php

    r23546 r23605  
    216216     * 文字列連結を行う. 
    217217     * 
    218      * @param  array  $columns 連結を行うカラム名 
     218     * @param  string[]  $columns 連結を行うカラム名 
    219219     * @return string 連結後の SQL 文 
    220220     */ 
  • branches/version-2_13-dev/data/class/db/dbfactory/SC_DB_DBFactory_PGSQL.php

    r23546 r23605  
    199199     * 文字列連結を行う. 
    200200     * 
    201      * @param  array  $columns 連結を行うカラム名 
     201     * @param  string[]  $columns 連結を行うカラム名 
    202202     * @return string 連結後の SQL 文 
    203203     */ 
Note: See TracChangeset for help on using the changeset viewer.