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
File:
1 edited

Legend:

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

    r23546 r23605  
    6363 
    6464    //-- 範囲検索(○ ~ ○ まで) 
     65 
     66    /** 
     67     * @param string $column 
     68     */ 
    6569    public function selectRange($from, $to, $column) 
    6670    { 
     
    8791 
    8892    //-- 期間検索(○年○月○日か~○年○月○日まで) 
     93 
     94    /** 
     95     * @param string $column 
     96     */ 
    8997    public function selectTermRange($from_year, $from_month, $from_day, $to_year, $to_month, $to_day, $column) 
    9098    { 
     
    127135 
    128136    // checkboxなどで同一カラム内で単一、もしくは複数選択肢が有る場合 例: AND ( sex = xxx OR sex = xxx OR sex = xxx) AND ... 
     137 
     138    /** 
     139     * @param string $ItemStr 
     140     */ 
    129141    public function setItemTerm($arr, $ItemStr) 
    130142    { 
     
    153165 
    154166    // NULL値が必要な場合 
     167 
     168    /** 
     169     * @param string $ItemStr 
     170     */ 
    155171    public function setItemTermWithNull($arr, $ItemStr) 
    156172    { 
     
    248264    } 
    249265 
     266    /** 
     267     * @param string $order 
     268     */ 
    250269    public function setOrder($order) 
    251270    { 
Note: See TracChangeset for help on using the changeset viewer.