コード例 #1
0
ファイル: JobQueue.php プロジェクト: adntec/queueManage
 public static function getInstance()
 {
     if (!self::$instance) {
         self::$instance = new JobQueue();
     }
     return self::$instance;
 }