Completed
Push — master ( 6a943d...2b60fb )
by David
02:17
created

CreateResponse   A

Complexity

Total Complexity 6

Size/Duplication

Total Lines 50
Duplicated Lines 100 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 6
lcom 0
cbo 1
dl 50
loc 50
ccs 12
cts 12
cp 1
rs 10
c 0
b 0
f 0

4 Methods

Rating   Name   Duplication   Size   Complexity  
A create() 7 7 3
A __construct() 5 5 1
A getMessage() 4 4 1
A getRoute() 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
declare(strict_types=1);
4
5
/*
6
 * Copyright (C) 2013 Mailgun
7
 *
8
 * This software may be modified and distributed under the terms
9
 * of the MIT license. See the LICENSE file for details.
10
 */
11
12
namespace Mailgun\Model\Route;
13
14
use Mailgun\Model\ApiResponse;
15
16
/**
17
 * @author David Garcia <[email protected]>
18
 */
19 View Code Duplication
final class CreateResponse implements ApiResponse
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...
20
{
21
    /**
22
     * @var string
23
     */
24
    private $message;
25
26
    /**
27
     * @var Route
28
     */
29
    private $route;
30
31
    /**
32
     * {@inheritdoc}
33
     */
34 1
    public static function create(array $data)
35
    {
36 1
        $message = isset($data['message']) ? $data['message'] : null;
37 1
        $route = isset($data['route']) ? Route::create($data['route']) : null;
38
39 1
        return new self($message, $route);
40
    }
41
42
    /**
43
     * CreateResponse Private Constructor.
44
     *
45
     * @param string|null $message
46
     */
47 1
    private function __construct($message = null, Route $route = null)
48
    {
49 1
        $this->message = $message;
50 1
        $this->route = $route;
51 1
    }
52
53
    /**
54
     * @return string
55
     */
56 1
    public function getMessage()
57
    {
58 1
        return $this->message;
59
    }
60
61
    /**
62
     * @return Route
63
     */
64 1
    public function getRoute()
65
    {
66 1
        return $this->route;
67
    }
68
}
69