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/pages/shopping/LC_Page_Shopping_Confirm.php

    r22555 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Shopping_Confirm extends LC_Page_Ex { 
     34class LC_Page_Shopping_Confirm extends LC_Page_Ex  
     35{ 
    3536 
    3637    // }}} 
     
    4243     * @return void 
    4344     */ 
    44     function init() { 
     45    function init() 
     46    { 
    4547        parent::init(); 
    4648        $this->tpl_title = 'ご入力内容のご確認'; 
     
    5961     * @return void 
    6062     */ 
    61     function process() { 
     63    function process() 
     64    { 
    6265        parent::process(); 
    6366        $this->action(); 
     
    7073     * @return void 
    7174     */ 
    72     function action() { 
     75    function action() 
     76    { 
    7377 
    7478        $objCartSess = new SC_CartSession_Ex(); 
     
    181185     * @return void 
    182186     */ 
    183     function destroy() { 
     187    function destroy() 
     188    { 
    184189        parent::destroy(); 
    185190    } 
Note: See TracChangeset for help on using the changeset viewer.