1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* Copyright 2016 SURFnet B.V. |
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\Configuration\Value; |
20
|
|
|
|
21
|
|
|
use JsonSerializable; |
22
|
|
|
use Surfnet\Stepup\Exception\InvalidArgumentException; |
23
|
|
|
|
24
|
|
View Code Duplication |
final class Institution implements JsonSerializable |
|
|
|
|
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 __toString() |
61
|
|
|
{ |
62
|
|
|
return $this->institution; |
63
|
|
|
} |
64
|
|
|
|
65
|
|
|
public function jsonSerialize() |
66
|
|
|
{ |
67
|
|
|
return $this->institution; |
68
|
|
|
} |
69
|
|
|
} |
70
|
|
|
|
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.