TiktokShop.php 844 字节
<?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;

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