Completed
Push — feature/ra-locations ( c0446e...b1d5fe )
by Boy
03:15
created

RaLocationSearchQuery   A

Complexity

Total Complexity 7

Size/Duplication

Total Lines 83
Duplicated Lines 26.51 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 3
Bugs 2 Features 1
Metric Value
wmc 7
c 3
b 2
f 1
lcom 1
cbo 1
dl 22
loc 83
rs 10

6 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 6 1
A getInstitution() 0 4 1
A setOrderBy() 0 8 1
A setOrderDirection() 12 12 1
A assertNonEmptyString() 10 10 2
A toHttpQuery() 0 6 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
namespace Surfnet\StepupMiddlewareClient\Configuration\Dto;
4
5
use Assert;
6
use Surfnet\StepupMiddlewareClient\Dto\HttpQuery;
7
8
class RaLocationSearchQuery implements HttpQuery
9
{
10
    /**
11
     * @var string
12
     */
13
    private $institution;
14
15
    /**
16
     * @var string|null
17
     */
18
    private $orderBy = 'name';
19
20
    /**
21
     * @var string|null
22
     */
23
    private $orderDirection = 'asc';
24
25
    /**
26
     * @param string $institution
27
     */
28
    public function __construct($institution)
29
    {
30
        $this->assertNonEmptyString($institution, 'institution');
31
32
        $this->institution = $institution;
33
    }
34
35
    /**
36
     * @return string
37
     */
38
    public function getInstitution()
39
    {
40
        return $this->institution;
41
    }
42
43
    /**
44
     * @param string $orderBy
45
     * @return $this
46
     */
47
    public function setOrderBy($orderBy)
48
    {
49
        $this->assertNonEmptyString($orderBy, 'orderBy');
50
51
        $this->orderBy = $orderBy;
52
53
        return $this;
54
    }
55
56
    /**
57
     * @param string $orderDirection
58
     * @return $this
59
     */
60 View Code Duplication
    public function setOrderDirection($orderDirection)
0 ignored issues
show
Duplication introduced by
This method 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...
61
    {
62
        $this->assertNonEmptyString($orderDirection, 'orderDirection');
63
        Assert\that($orderDirection)->choice(
64
            ['asc', 'desc', '', null],
65
            "Invalid order direction, must be one of 'asc', 'desc'"
66
        );
67
68
        $this->orderDirection = $orderDirection;
69
70
        return $this;
71
    }
72
73 View Code Duplication
    private function assertNonEmptyString($value, $name)
0 ignored issues
show
Duplication introduced by
This method 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...
74
    {
75
        $message = sprintf(
76
            '"%s" must be a non-empty string, "%s" given',
77
            $name,
78
            (is_object($value) ? get_class($value) : gettype($value))
79
        );
80
81
        Assert\that($value)->string($message)->notEmpty($message);
82
    }
83
84
    public function toHttpQuery()
85
    {
86
        return '?institution=' . urlencode($this->institution)
87
            . '&orderBy=' . urlencode($this->orderBy)
88
            . '&orderDirection' . urlencode($this->orderDirection);
89
    }
90
}
91