GzCBECServiceProvider.php
455 字节
<?php
namespace Lackoxygen\GzCbec;
use Illuminate\Support\ServiceProvider;
class GzCBECServiceProvider extends ServiceProvider
{
public function boot()
{
$configPath = __DIR__ . '/../config/gz-cbec.php';
$this->publishes([$configPath => config_path('gz-cbec.php')], 'lackoxygen-gz-cbec');
}
/**
* @inheritDoc
*/
public function provides(): array
{
return ['gzCbec', GzCBEC::class];
}
}