Completed
Push — master ( b74201...e72f98 )
by Anton
05:56
created

src/Http/Controllers/Api/Jobs/Get/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\Jobs\Get;
15
16
use Cog\Contracts\Paket\Job\Entities\Job as JobContract;
17
use Illuminate\Contracts\Support\Responsable as ResponsableContract;
18
use Illuminate\Http\JsonResponse;
19
use Illuminate\Http\Request;
20
21 View Code Duplication
final class Response implements ResponsableContract
22
{
23
    private $job;
24
25
    public function __construct(JobContract $job)
26
    {
27
        $this->job = $job;
28
    }
29
30
    /**
31
     * Create an HTTP response that represents the object.
32
     *
33
     * @param  \Illuminate\Http\Request $request
34
     * @return \Symfony\Component\HttpFoundation\Response
35
     */
36
    public function toResponse($request)
37
    {
38
        return $this->toJson($request);
39
    }
40
41
    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...
42
    {
43
        return response()->json($this->job->toArray());
44
    }
45
}
46