Action   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 10
c 1
b 0
f 0
dl 0
loc 18
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __invoke() 0 16 1
1
<?php
2
3
/*
4
 * This file is part of Laravel Sense.
5
 *
6
 * (c) Anton Komarev <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
declare(strict_types=1);
13
14
namespace Cog\Laravel\Sense\Http\Controllers\Requests\Get;
15
16
use Cog\Laravel\Sense\Http\Controllers\Controller;
17
use Cog\Laravel\Sense\Request\Models\Request as RequestModel;
18
use Illuminate\Database\Eloquent\Relations\Relation;
19
20
class Action extends Controller
21
{
22
    public function __invoke($correlationId, Request $formRequest)
23
    {
24
        $query = RequestModel::query()->where('correlation_id', $correlationId);
25
26
        $query->with([
27
            'url',
28
            'summary',
29
            'statementSummaries' => function (Relation $relation) {
30
                $relation->latest('id');
31
            },
32
            'statementSummaries.statement',
33
        ]);
34
35
        $request = $query->firstOrFail();
36
37
        return new Response($request);
38
    }
39
}
40