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

    r22206 r22567  
    3333 * @version $Id$ 
    3434 */ 
    35 class LC_Page_Api_Php extends LC_Page_Ex { 
     35class LC_Page_Api_Php extends LC_Page_Ex  
     36{ 
    3637 
    3738    // }}} 
     
    4344     * @return void 
    4445     */ 
    45     function init() { 
     46    function init() 
     47    { 
    4648        parent::init(); 
    4749    } 
     
    5254     * @return void 
    5355     */ 
    54     function process() { 
     56    function process() 
     57    { 
    5558        $this->action(); 
    5659//        $this->sendResponse(); 
     
    6265     * @return void 
    6366     */ 
    64     function action() { 
     67    function action() 
     68    { 
    6569        $arrParam = $_REQUEST; 
    6670 
     
    7579     * @return void 
    7680     */ 
    77     function destroy() { 
     81    function destroy() 
     82    { 
    7883        parent::destroy(); 
    7984    } 
Note: See TracChangeset for help on using the changeset viewer.