23 lines
739 B
PHP
23 lines
739 B
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | SentCMS [ WE CAN DO IT JUST THINK IT ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2013 http://www.tensent.cn All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Author: colin <colin@tensent.cn> <http://www.tensent.cn>
|
|
// +----------------------------------------------------------------------
|
|
namespace com;
|
|
|
|
use GuzzleHttp\Client;
|
|
|
|
/**
|
|
* @title 版本管理
|
|
* @description 版本管理类
|
|
*/
|
|
class Version{
|
|
|
|
public static function check(){
|
|
$client = new Client();
|
|
$res = $client->request('POST', 'http://www.tensent.cn/api/version/index');
|
|
}
|
|
} |