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/frontparts/bloc/LC_Page_FrontParts_Bloc_Cart.php

    r22206 r22567  
    3232 * @version $Id:LC_Page_FrontParts_Bloc_Cart.php 15532 2007-08-31 14:39:46Z nanasess $ 
    3333 */ 
    34 class LC_Page_FrontParts_Bloc_Cart extends LC_Page_FrontParts_Bloc_Ex { 
     34class LC_Page_FrontParts_Bloc_Cart extends LC_Page_FrontParts_Bloc_Ex  
     35{ 
    3536 
    3637    // }}} 
     
    4243     * @return void 
    4344     */ 
    44     function init() { 
     45    function init() 
     46    { 
    4547        parent::init(); 
    4648        $masterData = new SC_DB_MasterData_Ex(); 
     
    5355     * @return void 
    5456     */ 
    55     function process() { 
     57    function process() 
     58    { 
    5659        $this->action(); 
    5760        $this->sendResponse(); 
     
    6366     * @return void 
    6467     */ 
    65     function action() { 
     68    function action() 
     69    { 
    6670 
    6771        $objCart = new SC_CartSession_Ex(); 
     
    7983     * @return void 
    8084     */ 
    81     function destroy() { 
     85    function destroy() 
     86    { 
    8287        parent::destroy(); 
    8388    } 
     
    8994     * @return array カートデータ配列 
    9095     */ 
    91     function lfGetCartData(&$objCart) { 
     96    function lfGetCartData(&$objCart) 
     97    { 
    9298        $arrCartKeys = $objCart->getKeys(); 
    9399        foreach ($arrCartKeys as $cart_key) { 
Note: See TracChangeset for help on using the changeset viewer.