Skip to content

Commit

Permalink
Apply fixes from StyleCI (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
timgavin authored Apr 27, 2024
1 parent 797d791 commit 709371f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/LaravelBlockServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ public function boot(): void
$this->loadMigrationsFrom(__DIR__ . '/../database/migrations');

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

$this->publishes([
__DIR__.'/../config/laravel-block.php' => config_path('laravel-block.php')
__DIR__ . '/../config/laravel-block.php' => config_path('laravel-block.php'),
], 'config');

if ($this->app->runningInConsole()) {
Expand Down

0 comments on commit 709371f

Please sign in to comment.