Skip to content
This repository was archived by the owner on Jul 16, 2023. It is now read-only.

Commit 50dd556

Browse files
committed
Fixing published paths
1 parent 2f145c3 commit 50dd556

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Laravalid/LaravalidServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ class LaravalidServiceProvider extends ServiceProvider {
1919
public function boot()
2020
{
2121
$this->publishes([
22-
__DIR__.'/../../../config' => config_path('laravalid'),
22+
__DIR__.'/../../config' => config_path('laravalid'),
2323
], 'config');
2424

2525
$this->publishes([
26-
__DIR__.'/../../../public' => public_path('laravalid'),
26+
__DIR__.'/../../public' => public_path('laravalid'),
2727
], 'public');
2828

2929
$routeName = \Config::get('laravalid.route');

0 commit comments

Comments
 (0)