Skip to content

Commit

Permalink
Laravel Pint fixes (#1351)
Browse files Browse the repository at this point in the history
  • Loading branch information
Youri Wijnands committed Aug 2, 2023
1 parent ce46aa6 commit bb5edaf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Console/InstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ protected function livewireRouteDefinition()
Route::middleware([
'auth:sanctum',
config('jetstream.auth_session'),
'verified'
'verified',
])->group(function () {
Route::get('/dashboard', function () {
return view('dashboard');
Expand Down
2 changes: 1 addition & 1 deletion stubs/app/Models/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace App\Models;

use Illuminate\Contracts\Auth\MustVerifyEmail;
// use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
Expand Down

0 comments on commit bb5edaf

Please sign in to comment.