|
...
|
...
|
@@ -35,8 +35,8 @@ class TiktokShopProvider extends ServiceProvider |
|
|
|
*/
|
|
|
|
public function register()
|
|
|
|
{
|
|
|
|
$this->app->singleton(static::$name, function () {
|
|
|
|
return new TiktokShop(...func_get_args());
|
|
|
|
$this->app->singleton(static::$name, function (\Illuminate\Foundation\Application $application, array $args) {
|
|
|
|
return new TiktokShop(...$args);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
...
|
...
|
|