Skip to content

Commit c65a398

Browse files
lrljoegithub-actions[bot]
authored andcommitted
Fix styling
1 parent 02c8952 commit c65a398

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/LockableServiceProvider.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ public function boot()
3838
$timestamp = date('Y_m_d_His');
3939

4040
$this->publishes([
41-
__DIR__ . '/../database/migrations/create_model_locks_table.php' => database_path("/migrations/{$timestamp}_create_model_locks_table.php"),
41+
__DIR__.'/../database/migrations/create_model_locks_table.php' => database_path("/migrations/{$timestamp}_create_model_locks_table.php"),
4242
], 'migrations');
4343
}
4444

4545
$this->publishes([
46-
__DIR__ . '/../config/config.php' => config_path('lockable.php'),
46+
__DIR__.'/../config/config.php' => config_path('lockable.php'),
4747
], 'config');
4848

4949
// Publishing the views.
@@ -73,6 +73,6 @@ public function register()
7373
return new ModelLock();
7474
});
7575

76-
$this->mergeConfigFrom(__DIR__ . '/../config/config.php', 'lockable');
76+
$this->mergeConfigFrom(__DIR__.'/../config/config.php', 'lockable');
7777
}
7878
}

0 commit comments

Comments
 (0)