• 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/Middleware/HandleInertiaRequests.php
1
<?php
2

3
declare(strict_types=1);
4

5
namespace App\Http\Middleware;
6

7
use Illuminate\Http\Request;
8
use Inertia\Middleware;
9

10
class HandleInertiaRequests extends Middleware
11
{
12
    /**
13
     * The root template that is loaded on the first page visit.
14
     *
15
     * @var string
16
     */
17
    protected $rootView = 'app';
18

19
    /**
20
     * Determine the current asset version.
21
     */
22
    public function version(Request $request): ?string
23
    {
24
        return parent::version($request);
×
25
    }
26

27
    /**
28
     * Define the props that are shared by default.
29
     *
30
     * @return array<string, mixed>
31
     */
32
    public function share(Request $request): array
33
    {
34
        return [
×
35
            ...parent::share($request),
×
36
            'auth' => [
×
37
                'user' => $request->user(),
×
38
            ],
×
39
        ];
×
40
    }
41
}
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