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/api/operations/CartCreate.php

    r22206 r22567  
    3131require_once CLASS_EX_REALDIR . 'api_extends/SC_Api_Abstract_Ex.php'; 
    3232 
    33 class API_CartCreate extends SC_Api_Abstract_Ex { 
     33class API_CartCreate extends SC_Api_Abstract_Ex  
     34{ 
    3435 
    3536    protected $operation_name = 'CartCreate'; 
     
    4041    protected $default_sub_data = ''; 
    4142 
    42     public function doAction($arrParam) { 
     43    public function doAction($arrParam) 
     44    { 
    4345        $this->arrResponse = array( 
    4446            'Version' => ECCUBE_VERSION); 
     
    4648    } 
    4749 
    48     public function getRequestValidate() { 
     50    public function getRequestValidate() 
     51    { 
    4952        return; 
    5053    } 
    5154 
    52     protected function lfInitParam(&$objFormParam) { 
     55    protected function lfInitParam(&$objFormParam) 
     56    { 
    5357    } 
    5458 
    55     public function getResponseGroupName() { 
     59    public function getResponseGroupName() 
     60    { 
    5661        return 'VersionResponse'; 
    5762    } 
Note: See TracChangeset for help on using the changeset viewer.