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/data/class/batch/SC_Batch_Update.php

    r22206 r22567  
    3131 * @version $Id$ 
    3232 */ 
    33 class SC_Batch_Update extends SC_Batch { 
     33class SC_Batch_Update extends SC_Batch  
     34{ 
    3435 
    3536    /** 
     
    4950     * @return void 
    5051     */ 
    51     function execute($target = '.') { 
     52    function execute($target = '.') 
     53    { 
    5254        $msg = ''; 
    5355        $oldMask = umask(0); 
     
    196198     * @see http://www.php.net/glob 
    197199     */ 
    198     function listdirs($dir) { 
     200    function listdirs($dir) 
     201    { 
    199202        static $alldirs = array(); 
    200203        $dirs = glob($dir . '/*'); 
     
    213216     * @param string $path 絶対パス 
    214217     */ 
    215     function lfMkdirRecursive($path) { 
     218    function lfMkdirRecursive($path) 
     219    { 
    216220        $path = dirname($path); 
    217221 
     
    236240    } 
    237241 
    238     function makeDistInfo($bkupDistInfoArray) { 
     242    function makeDistInfo($bkupDistInfoArray) 
     243    { 
    239244        $src = "<?php\n" 
    240245             . '$distifo = array(' . "\n"; 
     
    248253    } 
    249254 
    250     function printLog($msg) { 
     255    function printLog($msg) 
     256    { 
    251257        GC_Utils_Ex::gfPrintLog($msg, DATA_REALDIR . 'logs/ownersstore_batch_update.log'); 
    252258    } 
Note: See TracChangeset for help on using the changeset viewer.