TiktokShopProvider.php
1.1 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
<?php
namespace Lackoxygen\TiktokShop;
use Illuminate\Support\ServiceProvider;
use Lackoxygen\TiktokShop\Command\RefreshToken;
class TiktokShopProvider extends ServiceProvider
{
/**
* @var string
*/
public static string $name = 'tiktok.shop';
protected array $commands = [
RefreshToken::class
];
/**
* @return void
*/
public function boot()
{
if ($this->app->runningInConsole()) {
$configPath = __DIR__ . '/../publish/tiktok.shop.php';
$this->publishes([
$configPath => config_path('tiktok.shop.php')
], 'lackoxygen-tiktok-shop');
$this->commands($this->commands);
}
}
/**
* @return void
*/
public function register()
{
$this->app->singleton(static::$name, function (\Illuminate\Foundation\Application $application, array $args) {
return new TiktokShop(...$args);
});
}
/**
* @return string[]
*/
public function provides(): array
{
return [static::$name];
}
}