Completed
Push — master ( b05350...7a687a )
by Anton
01:18
created

src/Http/Controllers/Api/Jobs/Post/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\Post;
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
0 ignored issues
show
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
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
42
    {
43
        return response()->json($this->job->toArray(), 201);
44
    }
45
}
46