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/html/user_data/__default.php

    r20813 r22567  
    1010 * @package Page 
    1111 */ 
    12 class LC_Page_User extends LC_Page_Ex { 
     12class LC_Page_User extends LC_Page_Ex  
     13{ 
    1314 
    1415    /** 
     
    1718     * @return void 
    1819     */ 
    19     function init() { 
     20    function init() 
     21    { 
    2022        parent::init(); 
    2123    } 
     
    2628     * @return void 
    2729     */ 
    28     function process() { 
     30    function process() 
     31    { 
    2932        parent::process(); 
    3033        $this->action(); 
     
    3740     * @return void 
    3841     */ 
    39     function action() { 
     42    function action() 
     43    { 
    4044    } 
    4145 
     
    4549     * @return void 
    4650     */ 
    47     function destroy() { 
     51    function destroy() 
     52    { 
    4853        parent::destroy(); 
    4954    } 
Note: See TracChangeset for help on using the changeset viewer.