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/plugin/SC_Plugin_Base.php

    r22206 r22567  
    3131 * @version $Id: $ 
    3232 */ 
    33 abstract class SC_Plugin_Base { 
     33abstract class SC_Plugin_Base  
     34{ 
    3435 
    3536    protected $arrSelfInfo; 
     
    4142     * @return void 
    4243     */ 
    43     function __construct(array $arrSelfInfo) { 
     44    function __construct(array $arrSelfInfo) 
     45    { 
    4446        $this->arrSelfInfo = $arrSelfInfo; 
    4547    } 
     
    9092     * @param integer $priority 
    9193     */ 
    92     function register(SC_Helper_Plugin $objHelperPlugin, $priority) { 
     94    function register(SC_Helper_Plugin $objHelperPlugin, $priority) 
     95    { 
    9396        if (isset($this->arrSelfInfo['plugin_hook_point'])) { 
    9497            $arrHookPoints = $this->arrSelfInfo['plugin_hook_point']; 
     
    108111     * @return array $arrSelfInfo 自身のプラグイン情報 
    109112     */ 
    110     function getPluginInfo() { 
     113    function getPluginInfo() 
     114    { 
    111115        return $this->arrSelfInfo; 
    112116    } 
Note: See TracChangeset for help on using the changeset viewer.