@@ -40,14 +40,14 @@ discard block |
||
40 | 40 | private $registrationCode; |
41 | 41 | |
42 | 42 | /** |
43 | - * @param $email |
|
44 | - * @param $tokenId |
|
45 | - * @param $tokenType |
|
46 | - * @param $commonName |
|
47 | - * @param $requestedAt |
|
48 | - * @param $preferredLocale |
|
49 | - * @param $institution |
|
50 | - * @param $registrationCode |
|
43 | + * @param string $email |
|
44 | + * @param string $tokenId |
|
45 | + * @param string $tokenType |
|
46 | + * @param string $commonName |
|
47 | + * @param \DateTime $requestedAt |
|
48 | + * @param string $preferredLocale |
|
49 | + * @param \Surfnet\Stepup\Identity\Value\Institution $institution |
|
50 | + * @param string $registrationCode |
|
51 | 51 | */ |
52 | 52 | public function __construct( |
53 | 53 | $email, |
@@ -115,6 +115,9 @@ discard block |
||
115 | 115 | return $this->preferredLocale; |
116 | 116 | } |
117 | 117 | |
118 | + /** |
|
119 | + * @return \Surfnet\Stepup\Identity\Value\Institution |
|
120 | + */ |
|
118 | 121 | public function getInstitution() |
119 | 122 | { |
120 | 123 | return $this->institution; |
@@ -61,6 +61,9 @@ |
||
61 | 61 | return $this->selectRaaOption; |
62 | 62 | } |
63 | 63 | |
64 | + /** |
|
65 | + * @param string $option |
|
66 | + */ |
|
64 | 67 | public function isOption($option) |
65 | 68 | { |
66 | 69 | return is_array($this->selectRaaOption) && in_array($this->selectRaaOption, $option); |
@@ -61,6 +61,9 @@ |
||
61 | 61 | return $this->useRaaOption; |
62 | 62 | } |
63 | 63 | |
64 | + /** |
|
65 | + * @param string $option |
|
66 | + */ |
|
64 | 67 | public function isOption($option) |
65 | 68 | { |
66 | 69 | return is_array($this->useRaaOption) && in_array($this->useRaaOption, $option); |
@@ -55,6 +55,9 @@ |
||
55 | 55 | return $this->getUseRaOption() === $other->getUseRaOption(); |
56 | 56 | } |
57 | 57 | |
58 | + /** |
|
59 | + * @param string $option |
|
60 | + */ |
|
58 | 61 | public function isOption($option) |
59 | 62 | { |
60 | 63 | return is_array($this->useRaOption) && in_array($this->useRaOption, $option); |