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/ItemLookup.php

    r22206 r22567  
    3131require_once CLASS_EX_REALDIR . 'api_extends/SC_Api_Abstract_Ex.php'; 
    3232 
    33 class API_ItemLookup extends SC_Api_Abstract_Ex { 
     33class API_ItemLookup extends SC_Api_Abstract_Ex  
     34{ 
    3435 
    3536    protected $operation_name = 'ItemLookup'; 
     
    4041    protected $default_sub_data = ''; 
    4142 
    42     public function doAction($arrParam) { 
     43    public function doAction($arrParam) 
     44    { 
    4345        $arrRequest = $this->doInitParam($arrParam); 
    4446        if (!$this->isParamError()) { 
     
    7577    } 
    7678 
    77     protected function checkErrorExtended($arrParam) { 
     79    protected function checkErrorExtended($arrParam) 
     80    { 
    7881        switch ($arrParam['IdType']) { 
    7982        case 'product_code': 
     
    8992    } 
    9093 
    91     protected function lfInitParam(&$objFormParam) { 
     94    protected function lfInitParam(&$objFormParam) 
     95    { 
    9296        $objFormParam->addParam('商品コンディション', 'Condition', STEXT_LEN, 'a', array('ALNUM_CHECK', 'MAX_LENGTH_CHECK')); 
    9397        $objFormParam->addParam('商品ID種別', 'IdType', STEXT_LEN, 'a', array('GRAPH_CHECK', 'MAX_LENGTH_CHECK')); 
     
    102106    } 
    103107 
    104     public function getResponseGroupName() { 
     108    public function getResponseGroupName() 
     109    { 
    105110        return 'Item'; 
    106111    } 
Note: See TracChangeset for help on using the changeset viewer.