TiktokShop.php 956 字节
<?php

namespace Lackoxygen\TiktokShop\Facade;

use Illuminate\Support\Facades\Facade;
use Lackoxygen\TiktokShop\Passage\Alliance\Alliance;
use Lackoxygen\TiktokShop\Passage\Authorize;
use Lackoxygen\TiktokShop\Passage\Order\OrderInterface;
use Lackoxygen\TiktokShop\Passage\Product\ProductInterface;
use Lackoxygen\TiktokShop\Passage\Shop\ShopInterface;
use Lackoxygen\TiktokShop\Passage\Verify;
use Lackoxygen\TiktokShop\TiktokShop as TiktokShopKernel;

/**
 * @method static OrderInterface order()
 * @method static ShopInterface shop()
 * @method static ProductInterface product()
 * @method static Authorize authorize()
 * @method static Verify verify()
 * @method static Alliance alliance()
 * @method static TiktokShopKernel setAccessToken(string $accessToken)
 */
class TiktokShop extends Facade
{
    /**
     * @return string
     */
    protected static function getFacadeAccessor(): string
    {
        return TiktokShopKernel::class;
    }
}