Facade.php
2.0 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
49
50
51
52
53
54
55
<?php
namespace Lackoxygen\TiktokShop\Facade;
use Lackoxygen\TiktokShop\Request;
use Illuminate\Support\Facades\Facade as LaravelFacade;
use Lackoxygen\TiktokShop\ServiceProvider;
use Lackoxygen\TiktokShop\Support\Verify;
use Lackoxygen\TiktokShop\Application;
/**
* @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;
}
/**
* @param string $name
* @return mixed
*/
public static function app(string $name): Application
{
return \app(ServiceProvider::$name, [$name]);
}
}