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

    r22206 r22567  
    2929 * @version $Id$ 
    3030 */ 
    31 class SC_ClassAutoloader { 
     31class SC_ClassAutoloader  
     32{ 
    3233    /** 
    3334     * クラスのオートローディング本体 
     
    3637     * @return void 
    3738     */ 
    38     public static function autoload($class) { 
     39    public static function autoload($class) 
     40    { 
    3941        $arrClassNamePart = explode('_', $class); 
    4042        $is_ex = end($arrClassNamePart) === 'Ex'; 
Note: See TracChangeset for help on using the changeset viewer.