TiktokShop.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\Passage;
use Illuminate\Support\Facades\Facade;
use Lackoxygen\TiktokShop\Passage\Verify;
use Lackoxygen\TiktokShop\TiktokShop as TiktokShopKernel;
/**
* @method static TiktokShopKernel setAccessToken(string $accessToken)
* @method static TiktokShopKernel use ($options)
* @method static Verify verify()
* @method static Passage\Pigeon\PigeonInterface pigeon()
* @method static Passage\Sms\SmsInterface sms()
* @method static Passage\SupplyChain\SupplyChainInterface supplyChain()
* @method static Passage\Topup\TopupInterface topup()
* @method static Passage\OpenCloud\OpenCloudInterface openCloud()
* @method static Passage\Btas\BtasInterface btas()
* @method static Passage\Recycle\RecycleInterface recycle()
* @method static Passage\Member\MemberInterface member()
* @method static Passage\Buyin\BuyinInterface buyin()
* @method static Passage\Yunc\YuncInterface yunc()
* @method static Passage\OrderCode\OrderCodeInterface orderCode()
* @method static Passage\Coupons\CouponsInterface coupons()
* @method static Passage\Crossborder\CrossborderInterface crossborder()
* @method static Passage\Iop\IopInterface iop()
* @method static Passage\Antispam\AntispamInterface antispam()
* @method static Passage\Token\TokenInterface token()
* @method static Passage\Order\OrderInterface order()
* @method static Passage\AfterSale\AfterSaleInterface afterSale()
* @method static Passage\Logistics\LogisticsInterface logistics()
* @method static Passage\Warehouse\WarehouseInterface warehouse()
* @method static Passage\Product\ProductInterface product()
* @method static Passage\Material\MaterialInterface material()
* @method static Passage\Address\AddressInterface address()
*/
class TiktokShop extends Facade
{
/**
* @return string
*/
protected static function getFacadeAccessor(): string
{
return TiktokShopKernel::class;
}
}