コード例 #1
0
ファイル: FileService.php プロジェクト: jpbalderas17/hris
 public static function getInstance()
 {
     if (empty(self::$me)) {
         self::$me = new FileService();
     }
     return self::$me;
 }