Ignore:
Timestamp:
2013/02/18 19:09:54 (13 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/AddrFromZip.php

    r22206 r22567  
    3131require_once CLASS_EX_REALDIR . 'api_extends/SC_Api_Abstract_Ex.php'; 
    3232 
    33 class API_AddrFromZip extends SC_Api_Abstract_Ex { 
     33class API_AddrFromZip extends SC_Api_Abstract_Ex  
     34{ 
    3435 
    3536    protected $operation_name = 'AddrFromZip'; 
     
    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()) { 
     
    5860    } 
    5961 
    60     protected function lfInitParam(&$objFormParam) { 
     62    protected function lfInitParam(&$objFormParam) 
     63    { 
    6164        $objFormParam->addParam('郵便番号1', 'zip1', ZIP01_LEN, 'n', array('EXIST_CHECK', 'NUM_CHECK', 'MAX_LENGTH_CHECK')); 
    6265        $objFormParam->addParam('郵便番号2', 'zip2', ZIP02_LEN, 'n', array('EXIST_CHECK', 'NUM_CHECK', 'MAX_LENGTH_CHECK')); 
    6366    } 
    6467 
    65     public function getResponseGroupName() { 
     68    public function getResponseGroupName() 
     69    { 
    6670        return 'AddressResponse'; 
    6771    } 
Note: See TracChangeset for help on using the changeset viewer.