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

    r22206 r22567  
    3131require_once CLASS_EX_REALDIR . 'api_extends/SC_Api_Abstract_Ex.php'; 
    3232 
    33 class API_Default extends SC_Api_Abstract_Ex { 
     33class API_Default extends SC_Api_Abstract_Ex  
     34{ 
    3435 
    3536    protected $operation_name = 'Default'; 
     
    4041    protected $default_sub_data = ''; 
    4142 
    42     public function doAction($arrParam) { 
     43    public function doAction($arrParam) 
     44    { 
    4345        $this->arrResponse = array('DefaultEmpty' => array()); 
    4446        return true; 
    4547    } 
    4648 
    47     public function getRequestValidate() { 
     49    public function getRequestValidate() 
     50    { 
    4851        return array('DefaultResponse' => array()); 
    4952    } 
    5053 
    51     public function getResponseGroupName() { 
     54    public function getResponseGroupName() 
     55    { 
    5256        return 'DefaultResponse'; 
    5357    } 
    5458 
    55     protected function lfInitParam(&$objFormParam) { 
     59    protected function lfInitParam(&$objFormParam) 
     60    { 
    5661    } 
    5762} 
Note: See TracChangeset for help on using the changeset viewer.