Completed
Push — feature/authz-service ( 7efef2...42019b )
by
unknown
03:56
created
StepupMiddleware/ApiBundle/Identity/Value/VerifiedTokenInformation.php 1 patch
Doc Comments   +11 added lines, -8 removed lines patch added patch discarded remove patch
@@ -40,14 +40,14 @@  discard block
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/Surfnet/Stepup/Configuration/Value/SelectRaaOption.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -59,6 +59,9 @@
 block discarded – undo
59 59
         return $this->institutions;
60 60
     }
61 61
 
62
+    /**
63
+     * @param string $option
64
+     */
62 65
     public function isOption($option){
63 66
         return is_array($this->selectRaaOption) && in_array($this->selectRaaOption, $option);
64 67
     }
Please login to merge, or discard this patch.
src/Surfnet/Stepup/Configuration/Value/UseRaaOption.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -66,6 +66,9 @@
 block discarded – undo
66 66
         return $this->institutions;
67 67
     }
68 68
 
69
+    /**
70
+     * @param string $option
71
+     */
69 72
     public function isOption($option){
70 73
         return is_array($this->institutions) && in_array($this->institutions, $option);
71 74
     }
Please login to merge, or discard this patch.