コード例 #1
0
ファイル: file_dao.php プロジェクト: SongPhi/spdownload
 public static function getInstance()
 {
     if (self::$classInstance === null) {
         self::$classInstance = new self();
     }
     return self::$classInstance;
 }
コード例 #2
0
ファイル: file_service.php プロジェクト: SongPhi/spdownload
 public function getCountFile($authorId)
 {
     return SPDOWNLOAD_BOL_FileDao::getInstance()->countFile($authorId);
 }