Completed
Push — master ( 20d2a7...83241b )
by Anton
01:20
created

Controllers/Api/Requirements/Delete/Response.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
/*
4
 * This file is part of Laravel Paket.
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\Paket\Http\Controllers\Api\Requirements\Delete;
15
16
use Cog\Contracts\Paket\Job\Entities\Job as JobContract;
17
use Cog\Contracts\Paket\Requirement\Entities\Requirement as RequirementContract;
18
use Illuminate\Contracts\Support\Responsable as ResponsableContract;
19
use Illuminate\Http\JsonResponse;
20
use Illuminate\Http\Request;
21
22 View Code Duplication
final class Response implements ResponsableContract
23
{
24
    private $requirement;
25
26
    private $job;
27
28
    public function __construct(RequirementContract $requirement, JobContract $job)
29
    {
30
        $this->requirement = $requirement;
31
        $this->job = $job;
32
    }
33
34
    /**
35
     * Create an HTTP response that represents the object.
36
     *
37
     * @param  \Illuminate\Http\Request $request
38
     * @return \Symfony\Component\HttpFoundation\Response
39
     */
40
    public function toResponse($request)
41
    {
42
        return $this->toJson($request);
43
    }
44
45
    private function toJson(Request $request): JsonResponse
0 ignored issues
show
The parameter $request is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
46
    {
47
        $jobUrl = route('paket.api.jobs.get', $this->job->getId());
48
49
        $data = [
50
            'data' => [
51
                'type' => 'CogPaketJob',
52
                'id' => $this->job->getId(),
53
                'attributes' => [
54
                    'status' => 'Shell command execution',
55
                ],
56
                'links' => [
57
                    'self' => $jobUrl,
58
                ],
59
            ],
60
        ];
61
62
        return response()->json($data, 202, [
63
            'Content-Location' => $jobUrl,
64
        ]);
65
    }
66
}
67