Completed
Push — master ( 5467e4...183ea4 )
by Boy
05:06 queued 01:02
created

Institution   A

Complexity

Total Complexity 7

Size/Duplication

Total Lines 46
Duplicated Lines 100 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 7
lcom 1
cbo 1
dl 46
loc 46
rs 10
c 1
b 0
f 0

5 Methods

Rating   Name   Duplication   Size   Complexity  
A getInstitution() 4 4 1
A __construct() 8 8 3
A equals() 4 4 1
A jsonSerialize() 4 4 1
A __toString() 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
 * Copyright 2014 SURFnet bv
5
 *
6
 * Licensed under the Apache License, Version 2.0 (the "License");
7
 * you may not use this file except in compliance with the License.
8
 * You may obtain a copy of the License at
9
 *
10
 *     http://www.apache.org/licenses/LICENSE-2.0
11
 *
12
 * Unless required by applicable law or agreed to in writing, software
13
 * distributed under the License is distributed on an "AS IS" BASIS,
14
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
 * See the License for the specific language governing permissions and
16
 * limitations under the License.
17
 */
18
19
namespace Surfnet\Stepup\Identity\Value;
20
21
use JsonSerializable;
22
use Surfnet\Stepup\Exception\InvalidArgumentException;
23
24 View Code Duplication
final class Institution implements JsonSerializable
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...
25
{
26
    /**
27
     * @var string
28
     */
29
    private $institution;
30
31
    /**
32
     * @param string $institution may not be an empty string
33
     */
34
    public function __construct($institution)
35
    {
36
        if (!is_string($institution) || strlen(trim($institution)) === 0) {
37
            throw InvalidArgumentException::invalidType('non-empty string', 'institution', $institution);
38
        }
39
40
        $this->institution = trim($institution);
41
    }
42
43
    /**
44
     * @return string
45
     */
46
    public function getInstitution()
47
    {
48
        return $this->institution;
49
    }
50
51
    /**
52
     * @param Institution $otherInstitution
53
     * @return bool
54
     */
55
    public function equals(Institution $otherInstitution)
56
    {
57
        return $this->institution === $otherInstitution->institution;
58
    }
59
60
    public function jsonSerialize()
61
    {
62
        return $this->institution;
63
    }
64
65
    public function __toString()
66
    {
67
        return $this->institution;
68
    }
69
}
70