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/templates/templates.xml

    r20540 r22567  
    3232 * @version $$Id$$ 
    3333 */ 
    34 class LC_Page_XXX extends LC_Page_Ex { 
     34class LC_Page_XXX extends LC_Page_Ex 
     35{ 
    3536 
    3637    // }}} 
     
    4243     * @return void 
    4344     */ 
    44     function init() { 
     45    function init() 
     46    { 
    4547        parent::init(); 
    4648    } 
     
    5153     * @return void 
    5254     */ 
    53     function process() { 
     55    function process() 
     56    { 
    5457    } 
    5558 
     
    5962     * @return void 
    6063     */ 
    61     function destroy() { 
     64    function destroy() 
     65    { 
    6266        parent::destroy(); 
    6367    } 
     
    99103 * @version $$Id$$ 
    100104 */ 
    101 class LC_Page_XXX_Ex extends LC_Page_XXX { 
     105class LC_Page_XXX_Ex extends LC_Page_XXX 
     106{ 
    102107 
    103108    // }}} 
     
    109114     * @return void 
    110115     */ 
    111     function init() { 
     116    function init() 
     117    { 
    112118        parent::init(); 
    113119    } 
     
    118124     * @return void 
    119125     */ 
    120     function process() { 
     126    function process() 
     127    { 
    121128        parent::process(); 
    122129    } 
     
    127134     * @return void 
    128135     */ 
    129     function destroy() { 
     136    function destroy() 
     137    { 
    130138        parent::destroy(); 
    131139    } 
Note: See TracChangeset for help on using the changeset viewer.