Ignore:
Timestamp:
2012/02/17 00:50:05 (12 years ago)
Author:
Seasoft
Message:

#1613 (ソース整形・ソースコメントの改善)

  • Zend Framework PHP 標準コーディング規約への準拠を高めた。(主に「Switch」の項)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class_extends/db_extends/SC_DB_DBFactory_Ex.php

    r21493 r21526  
    4747    function getInstance($db_type = DB_TYPE) { 
    4848        switch ($db_type) { 
    49         case 'mysql': 
    50             return new SC_DB_DBFactory_MYSQL_Ex(); 
    51             break; 
     49            case 'mysql': 
     50                return new SC_DB_DBFactory_MYSQL_Ex(); 
    5251 
    53         case 'pgsql': 
    54             return new SC_DB_DBFactory_PGSQL_Ex(); 
    55             break; 
     52            case 'pgsql': 
     53                return new SC_DB_DBFactory_PGSQL_Ex(); 
    5654 
    57         default: 
    58             return new SC_DB_DBFactory_Ex(); 
     55            default: 
     56                return new SC_DB_DBFactory_Ex(); 
    5957        } 
    6058    } 
Note: See TracChangeset for help on using the changeset viewer.