Completed
Push — master ( d244a1...8fd770 )
by Anton
01:17
created

PostResponse::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 4
Ratio 100 %

Importance

Changes 0
Metric Value
dl 4
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
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;
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
20 View Code Duplication
final class PostResponse implements ResponsableContract
0 ignored issues
show
Duplication introduced by
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...
21
{
22
    private $job;
23
24
    public function __construct(JobContract $job)
25
    {
26
        $this->job = $job;
27
    }
28
29
    /**
30
     * Create an HTTP response that represents the object.
31
     *
32
     * @param \Illuminate\Http\Request $request
33
     * @return \Symfony\Component\HttpFoundation\Response
34
     */
35
    public function toResponse($request)
36
    {
37
        return $this->toJson();
38
    }
39
40
    private function toJson(): JsonResponse
41
    {
42
        return response()->json($this->job->toArray(), 201);
43
    }
44
}
45