Ignore:
Timestamp:
2012/02/15 19:56:17 (12 years ago)
Author:
Seasoft
Message:

#1625 (typo修正・ソース整形・ソースコメントの改善)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/db/SC_DB_DBFactory.php

    r21490 r21514  
    6262     * @return void|string データソース名 
    6363     */ 
    64     function getDSN($dsn = "") { 
     64    function getDSN($dsn = '') { 
    6565        if (empty($dsn)) { 
    6666            if (defined('DEFAULT_DSN')) { 
    6767                $dsn = DEFAULT_DSN; 
    6868            } else { 
    69                 return ""; 
     69                return ''; 
    7070            } 
    7171        } 
     
    7979     * @return string データベースのバージョン 
    8080     */ 
    81     function sfGetDBVersion($dsn = "") { return null; } 
     81    function sfGetDBVersion($dsn = '') { return null; } 
    8282 
    8383    /** 
     
    143143     * @return array テーブル名の配列 
    144144     */ 
    145     function findTableNames($expression = "") { return array(); } 
     145    function findTableNames($expression = '') { return array(); } 
    146146 
    147147    /** 
Note: See TracChangeset for help on using the changeset viewer.