Ignore:
Timestamp:
2012/02/17 02:42:21 (14 years ago)
Author:
Seasoft
Message:

#1613 (ソース整形・ソースコメントの改善)

  • Zend Framework PHP 標準コーディング規約への準拠を高めた
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/db/SC_DB_MasterData.php

    r21514 r21527  
    249249     * @param bool $isDefine 定数を生成する場合 true 
    250250     * @param array $commentColumn [0] => キー, [1] => コメント文字列, 
    251                                    [2] => 表示順 を表すカラム名を格納した配列 
     251     *                             [2] => 表示順 を表すカラム名を格納した配列 
    252252     * @return bool キャッシュの生成に成功した場合 true 
    253253     */ 
    254     function createCache($name, $columns = array(), $isDefine = false, 
    255                          $commentColumn = array()) { 
     254    function createCache($name, $columns = array(), $isDefine = false, $commentColumn = array()) { 
    256255 
    257256        // マスターデータを取得 
     
    266265            // 定数コメントを生成する場合 
    267266            if (!empty($commentColumn)) { 
    268                 $data .= $this->getMasterDataAsDefine($masterData, 
    269                                  $this->getDbMasterData($name, $commentColumn)); 
     267                $data .= $this->getMasterDataAsDefine($masterData, $this->getDbMasterData($name, $commentColumn)); 
    270268            } else { 
    271269                $data .= $this->getMasterDataAsDefine($masterData); 
Note: See TracChangeset for help on using the changeset viewer.