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

GetResponse   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 25
Duplicated Lines 100 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 0
Metric Value
wmc 3
lcom 1
cbo 1
dl 25
loc 25
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 4 4 1
A toResponse() 4 4 1
A toJson() 4 4 1

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

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 GetResponse 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());
43
    }
44
}
45