• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

LeTraceurSnorkLibrary / MessSaga / 23794220134

31 Mar 2026 11:08AM UTC coverage: 0.412% (-18.2%) from 18.656%
23794220134

Pull #13

github

web-flow
Merge dd0c58bb9 into b32c68b3f
Pull Request #13: infra: coverage only for unit-tests

3 of 729 relevant lines covered (0.41%)

0.01 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/app/Http/Controllers/Auth/EmailVerificationPromptController.php
1
<?php
2

3
declare(strict_types=1);
4

5
namespace App\Http\Controllers\Auth;
6

7
use App\Http\Controllers\Controller;
8
use Illuminate\Http\RedirectResponse;
9
use Illuminate\Http\Request;
10
use Inertia\Inertia;
11
use Inertia\Response;
12

13
class EmailVerificationPromptController extends Controller
14
{
15
    /**
16
     * Display the email verification prompt.
17
     */
18
    public function __invoke(Request $request): RedirectResponse|Response
19
    {
20
        return $request->user()->hasVerifiedEmail()
×
21
                    ? redirect()->intended(route('dashboard', absolute: false))
×
22
                    : Inertia::render('Auth/VerifyEmail', ['status' => session('status')]);
×
23
    }
24
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc