Ignore:
Timestamp:
2013/08/24 23:33:52 (11 years ago)
Author:
kimoto
Message:

#2043 typo修正・ソース整形・ソースコメントの改善 for 2.13.0
PHP4的な書き方の修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/data/class/SC_Cache.php

    r22856 r23124  
    3333     * @var object 
    3434     */ 
    35     static $_instance = NULL; 
     35    public static $_instance = NULL; 
    3636 
    3737    /** 
     
    7575     * Get data from cache. 
    7676     * 
    77      * @param   string  $id         cache id 
    78      * @param   string  $group      name of the cache group 
    79      * @param   int     $lifeTime  custom lifetime 
    80      * @return  mixed   data of cache (else : false) 
     77     * @param  string $id       cache id 
     78     * @param  string $group    name of the cache group 
     79     * @param  int    $lifeTime custom lifetime 
     80     * @return mixed  data of cache (else : false) 
    8181     */ 
    8282    public static function get($id, $group = 'default', $lifeTime = NULL) 
     
    9898     * Save data into cache. 
    9999     * 
    100      * @param   mixed   $data   data of cache 
    101      * @param   string  $id     cache id 
    102      * @param   string  $group name of the cache group 
    103      * @return  void 
     100     * @param  mixed  $data  data of cache 
     101     * @param  string $id    cache id 
     102     * @param  string $group name of the cache group 
     103     * @return void 
    104104     */ 
    105105    public static function save($data, $id, $group = 'default') 
     
    113113     * Clean cache. 
    114114     * 
    115      * @param string $group name of the cache group 
     115     * @param  string $group name of the cache group 
    116116     * @return void 
    117117     */ 
Note: See TracChangeset for help on using the changeset viewer.