Skip to content

Commit

Permalink
Merge pull request #4 from joshstrange/master
Browse files Browse the repository at this point in the history
Fixes for 5.1
  • Loading branch information
DarkaOnLine committed Aug 4, 2015
2 parents 71cbd23 + e1070a7 commit ce26edb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Console/PublishAssetsCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function fire()
$this->info("Publishing assets files");
$this->call('vendor:publish', array(
'--provider' => 'Darkaonline\L5Swagger\L5SwaggerServiceProvider',
'--tag' => 'assets'
'--tag' => ['assets']
));
}

Expand Down
2 changes: 1 addition & 1 deletion src/Console/PublishConfigCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function fire()
$this->info("Publish config files");
$this->call('vendor:publish', array(
'--provider' => 'Darkaonline\L5Swagger\L5SwaggerServiceProvider',
'--tag' => 'config'
'--tag' => ['config']
));
}

Expand Down
2 changes: 1 addition & 1 deletion src/Console/PublishViewsCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function fire()
$this->info("Publishing view files");
$this->call('vendor:publish', array(
'--provider' => 'Darkaonline\L5Swagger\L5SwaggerServiceProvider',
'--tag' => 'views'
'--tag' => ['views']
));
}

Expand Down

0 comments on commit ce26edb

Please sign in to comment.