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

Legend:

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

    r23546 r23605  
    5353 
    5454    // 棒グラフの描画 
     55 
     56    /** 
     57     * @param integer $line_no 
     58     */ 
    5559    public function drawBar($line_no) 
    5660    { 
     
    8387 
    8488    // ラベルを描画する 
     89 
     90    /** 
     91     * @param integer $line_no 
     92     */ 
    8593    public function drawLabel($line_no) 
    8694    { 
  • branches/version-2_13-dev/data/class/graph/SC_Graph_Base.php

    r23546 r23605  
    273273 
    274274    // テキストを出力する 
     275 
     276    /** 
     277     * @param integer $color 
     278     */ 
    275279    public function setText($font_size, $left, $top, $text, $color = NULL, $angle = 0, $labelbg = false) 
    276280    { 
     
    306310 
    307311    // タイトルを出力する 
     312 
     313    /** 
     314     * @param string $text 
     315     */ 
    308316    public function drawTitle($text, $font_size = TITLE_FONT_SIZE) 
    309317    { 
     
    378386 
    379387    // カラーラベル背景の描画 
     388 
     389    /** 
     390     * @param double $left 
     391     * @param double $right 
     392     * @param integer $bottom 
     393     */ 
    380394    public function drawClabelBG($left, $top, $right, $bottom) 
    381395    { 
     
    442456     * @param  integer $cx 中心点X座標 
    443457     * @param  integer $cy 中心点Y座標 
    444      * @param  integer $r  半径 
    445458     * @param  integer $e  角度 
    446      * @return array   円の中心点と直径から弧の終端座標の配列 
     459     * @return double[]   円の中心点と直径から弧の終端座標の配列 
    447460     */ 
    448461    public function lfGetArcPos($cx, $cy, $cw, $ch, $e) 
  • branches/version-2_13-dev/data/class/graph/SC_Graph_Line.php

    r23546 r23605  
    5656 
    5757    // X軸ラベルの角度セット 
     58 
     59    /** 
     60     * @param integer $Angle 
     61     */ 
    5862    public function setXLabelAngle($Angle) 
    5963    { 
     
    238242 
    239243    // ラインを描画する 
     244 
     245    /** 
     246     * @param integer $line_no 
     247     */ 
    240248    public function drawLine($line_no) 
    241249    { 
     
    255263 
    256264    // マークを描画する 
     265 
     266    /** 
     267     * @param integer $line_no 
     268     */ 
    257269    public function drawMark($line_no) 
    258270    { 
     
    267279 
    268280    // ラベルを描画する 
     281 
     282    /** 
     283     * @param integer $line_no 
     284     */ 
    269285    public function drawLabel($line_no) 
    270286    { 
  • branches/version-2_13-dev/data/class/graph/SC_Graph_Pie.php

    r23546 r23605  
    7777 
    7878    // 円の位置設定を行う 
     79 
     80    /** 
     81     * @param double $cx 
     82     * @param double $cy 
     83     */ 
    7984    public function setPosition($cx, $cy) 
    8085    { 
Note: See TracChangeset for help on using the changeset viewer.