Created
October 9, 2021 03:54
-
-
Save jsdecena/d5e3e089a131beab6af0dacf5d814c24 to your computer and use it in GitHub Desktop.
Service Provider
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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