Skip to content

Commit 0fedd42

Browse files
committed
Update service provider to use tags for publish
1 parent 4d17db8 commit 0fedd42

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Providers/TaggingServiceProvider.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
/**
1010
* Copyright (C) 2014 Robert Conner
1111
*/
12-
class TaggingServiceProvider extends ServiceProvider {
13-
12+
class TaggingServiceProvider extends ServiceProvider
13+
{
1414
/**
1515
* Indicates if loading of the provider is deferred.
1616
*/
@@ -22,11 +22,11 @@ class TaggingServiceProvider extends ServiceProvider {
2222
public function boot()
2323
{
2424
$this->publishes([
25-
__DIR__.'/../config/tagging.php' => config_path('tagging.php')
25+
__DIR__.'/../../config/tagging.php' => config_path('tagging.php')
2626
], 'config');
2727

2828
$this->publishes([
29-
__DIR__.'/../migrations/' => database_path('migrations')
29+
__DIR__.'/../../migrations/' => database_path('migrations')
3030
], 'migrations');
3131
}
3232

0 commit comments

Comments
 (0)