コード例 #1
0
ファイル: CurlCaller.php プロジェクト: niczak/php-last.fm-api
 /** Get a Caller instance.
  *
  * @return	Caller	A Caller instance.
  * @static
  * @access	public
  */
 public static function getInstance()
 {
     if (!is_object(self::$instance)) {
         self::$instance = new CurlCaller();
     }
     return self::$instance;
 }