コード例 #1
0
ファイル: itv.class.php プロジェクト: saydulk/stalker_portal
 /**
  * @static
  * @return Itv
  */
 public static function getInstance()
 {
     if (self::$instance == null) {
         self::$instance = new self();
     }
     return self::$instance;
 }