Skip to content

Instantly share code, notes, and snippets.

@jsdecena
Created October 9, 2021 03:54
Show Gist options
  • Save jsdecena/d5e3e089a131beab6af0dacf5d814c24 to your computer and use it in GitHub Desktop.
Save jsdecena/d5e3e089a131beab6af0dacf5d814c24 to your computer and use it in GitHub Desktop.
Service Provider
<?php
namespace Jsdecena\SimpleTdd\Tests;
class ServiceProvider extends \Illuminate\Support\ServiceProvider
{
/**
* Perform post-registration booting of services.
*
* @return void
*/
public function boot()
{
$this->publishes([
dirname(__DIR__) . '/config' => config_path()
], 'simpletdd');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment