GzCBECServiceProvider.php 448 字节
<?php


namespace Lackoxygen\GzCbec;


use Illuminate\Support\ServiceProvider;

class GzCBECProvider 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];
    }
}