Facade.php
1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
namespace Lackoxygen\TiktokShop\Facade;
use Lackoxygen\TiktokShop\Request;
use Illuminate\Support\Facades\Facade as LaravelFacade;
use Lackoxygen\TiktokShop\Support\Verify;
use Lackoxygen\TiktokShop\Application;
/**
* @method static Application setAccessToken(string $accessToken)
* @method static Application use ($options)
* @method static Verify verify()
* @method static Request\Pigeon\PigeonInterface pigeon()
* @method static Request\Sms\SmsInterface sms()
* @method static Request\SupplyChain\SupplyChainInterface supplyChain()
* @method static Request\Topup\TopupInterface topup()
* @method static Request\OpenCloud\OpenCloudInterface openCloud()
* @method static Request\Btas\BtasInterface btas()
* @method static Request\Recycle\RecycleInterface recycle()
* @method static Request\Member\MemberInterface member()
* @method static Request\Buyin\BuyinInterface buyin()
* @method static Request\Yunc\YuncInterface yunc()
* @method static Request\OrderCode\OrderCodeInterface orderCode()
* @method static Request\Coupons\CouponsInterface coupons()
* @method static Request\Crossborder\CrossborderInterface crossborder()
* @method static Request\Iop\IopInterface iop()
* @method static Request\Antispam\AntispamInterface antispam()
* @method static Request\Token\TokenInterface token()
* @method static Request\Order\OrderInterface order()
* @method static Request\AfterSale\AfterSaleInterface afterSale()
* @method static Request\Logistics\LogisticsInterface logistics()
* @method static Request\Warehouse\WarehouseInterface warehouse()
* @method static Request\Product\ProductInterface product()
* @method static Request\Material\MaterialInterface material()
* @method static Request\Address\AddressInterface address()
*/
class Facade extends LaravelFacade
{
/**
* @return string
*/
protected static function getFacadeAccessor(): string
{
return Application::class;
}
}