Skip to content

Commit

Permalink
Merge pull request #2 from spatie/analysis-qoaGVb
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
freekmurze authored Nov 12, 2019
2 parents f2714e9 + ecc3f15 commit ec12bbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/WelcomeNotificationServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ public function boot()
{
Route::macro('handleWelcome', function (string $url = '') {
Route::prefix($url)->group(function () {
Route::get('welcome/{userId}/{token}', ['\\' . WelcomeController::class, 'showWelcomeForm'])->name('welcome');
Route::post('welcome', ['\\' . WelcomeController::class, 'savePassword'])->name('welcome.save-password');
Route::get('welcome/{userId}/{token}', ['\\'.WelcomeController::class, 'showWelcomeForm'])->name('welcome');
Route::post('welcome', ['\\'.WelcomeController::class, 'savePassword'])->name('welcome.save-password');
});
});

Expand Down

0 comments on commit ec12bbd

Please sign in to comment.