Ignore:
Timestamp:
2013/02/18 19:09:54 (11 years ago)
Author:
shutta
Message:

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.12.4)
Zend Framework PHP 標準コーディング規約のコーディングスタイルへ準拠。
classおよびfunctionの開始波括弧「{」のスタイルを修正。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/test/createEcCubeCustomerData-v25.php

    r22206 r22567  
    8888 * EC-CUBE のテスト用会員データを生成する 
    8989 */ 
    90 class CreateEcCubeCustomerData { 
     90class CreateEcCubeCustomerData  
     91{ 
    9192 
    9293    /** SC_Query インスタンス */ 
     
    9697     * コンストラクタ. 
    9798     */ 
    98     function CreateEcCubeCustomerData() { 
     99    function CreateEcCubeCustomerData() 
     100    { 
    99101        $this->objQuery = new SC_Query(); 
    100102    } 
     
    105107     * @return void 
    106108     */ 
    107     function createCustomers() { 
     109    function createCustomers() 
     110    { 
    108111        lfPrintLog("createCustomers START.(" . CUSTOMERS_VOLUME . " data)"); 
    109112        for ($i = 0; $i < CUSTOMERS_VOLUME; $i++) { 
     
    159162 
    160163/** テスト用スクリプトのログ出力関数 */ 
    161 function lfPrintLog($mess) { 
     164function lfPrintLog($mess) 
     165{ 
    162166    $path = DATA_REALDIR . "logs/" .  basename(__FILE__, '.php') . ".log"; 
    163167    GC_Utils::gfPrintLog($mess, $path); 
Note: See TracChangeset for help on using the changeset viewer.