Stevenyangecho\UEditor\UEditorServiceProvider::register PHP Method

register() public method

Register the service provider.
public register ( ) : void
return void
    public function register()
    {
        $configPath = realpath(__DIR__ . '/../config/UEditorUpload.php');
        $this->mergeConfigFrom($configPath, 'UEditorUpload');
        $this->publishes([$configPath => config_path('UEditorUpload.php')], 'config');
    }
UEditorServiceProvider