Skip to content

Commit

Permalink
Update service provider to use tags for publish
Browse files Browse the repository at this point in the history
  • Loading branch information
rtconner committed Feb 7, 2016
1 parent 4d17db8 commit 0fedd42
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Providers/TaggingServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
/**
* Copyright (C) 2014 Robert Conner
*/
class TaggingServiceProvider extends ServiceProvider {

class TaggingServiceProvider extends ServiceProvider
{
/**
* Indicates if loading of the provider is deferred.
*/
Expand All @@ -22,11 +22,11 @@ class TaggingServiceProvider extends ServiceProvider {
public function boot()
{
$this->publishes([
__DIR__.'/../config/tagging.php' => config_path('tagging.php')
__DIR__.'/../../config/tagging.php' => config_path('tagging.php')
], 'config');

$this->publishes([
__DIR__.'/../migrations/' => database_path('migrations')
__DIR__.'/../../migrations/' => database_path('migrations')
], 'migrations');
}

Expand Down

0 comments on commit 0fedd42

Please sign in to comment.