新增http客户端

This commit is contained in:
JaguarJack
2020-05-21 23:08:16 +08:00
parent 853ebe7437
commit 5ac51366f2
4 changed files with 504 additions and 84 deletions

View File

@@ -0,0 +1,12 @@
<?php
namespace catcher\facade;
use think\Facade;
class Http extends Facade
{
protected static function getFacadeClass()
{
return \catcher\library\client\Http::class;
}
}