Skip to content
This repository has been archived by the owner on Aug 11, 2020. It is now read-only.

Commit

Permalink
bug fix publish doku hook
Browse files Browse the repository at this point in the history
  • Loading branch information
fherryfherry committed Aug 28, 2016
1 parent 01f9f74 commit 4ba4180
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DokuLaravelServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class DokuLaravelServiceProvider extends ServiceProvider
public function boot()
{
$this->publishes([ __DIR__.'/Config/dokularavel.php' => config_path('dokularavel.php')],'dokularavel_config');
$this->publishes([ __DIR__.'/Controllers/DokuLaravelHookController.php' => base_path('App/Http/Controllers/DokuLaravelHookController.php')],'dokularavel_hook');
$this->publishes([ __DIR__.'/Controllers/DokuLaravelHookController.php' => app_path('Http/Controllers/DokuLaravelHookController.php')],'dokularavel_hook');
$this->publishes([ __DIR__.'/Assets' => public_path('vendor/dokularavel')],'dokularavel_assets');
$this->loadViewsFrom(__DIR__.'/Views', 'dokularavel');

Expand Down

0 comments on commit 4ba4180

Please sign in to comment.