Skip to content

Commit

Permalink
Apply fixes from StyleCI (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
timgavin authored Apr 27, 2024
1 parent 65ff9f5 commit c4e7142
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/LaravelFollowServiceProvider.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-follow.php' => config_path('laravel-follow.php')
__DIR__ . '/../config/laravel-follow.php' => config_path('laravel-follow.php'),
], 'config');

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

0 comments on commit c4e7142

Please sign in to comment.