We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d17db8 commit 0fedd42Copy full SHA for 0fedd42
src/Providers/TaggingServiceProvider.php
@@ -9,8 +9,8 @@
9
/**
10
* Copyright (C) 2014 Robert Conner
11
*/
12
-class TaggingServiceProvider extends ServiceProvider {
13
-
+class TaggingServiceProvider extends ServiceProvider
+{
14
15
* Indicates if loading of the provider is deferred.
16
@@ -22,11 +22,11 @@ class TaggingServiceProvider extends ServiceProvider {
22
public function boot()
23
{
24
$this->publishes([
25
- __DIR__.'/../config/tagging.php' => config_path('tagging.php')
+ __DIR__.'/../../config/tagging.php' => config_path('tagging.php')
26
], 'config');
27
28
29
- __DIR__.'/../migrations/' => database_path('migrations')
+ __DIR__.'/../../migrations/' => database_path('migrations')
30
], 'migrations');
31
}
32
0 commit comments