Completed
Push — bugfix/ra-candiddate-restore ( e2d10d...12b5b0 )
by
unknown
02:01
created
src/Surfnet/Stepup/Identity/Api/Id.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@
 block discarded – undo
23 23
     /**
24 24
      * @param mixed $value
25 25
      * @throws \InvalidArgumentException
26
+     * @return void
26 27
      */
27 28
     public function __construct($value);
28 29
 
Please login to merge, or discard this patch.
src/Surfnet/Stepup/Identity/Api/Whitelist.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -24,6 +24,7 @@
 block discarded – undo
24 24
 {
25 25
     /**
26 26
      * Instantiate a new Whitelist, should not be used.
27
+     * @return void
27 28
      */
28 29
     public function __construct();
29 30
 
Please login to merge, or discard this patch.
src/Surfnet/Stepup/Identity/Event/LocalePreferenceExpressedEvent.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
 
54 54
     /**
55 55
      * @param array $data
56
-     * @return IdentityRenamedEvent The object instance
56
+     * @return LocalePreferenceExpressedEvent The object instance
57 57
      */
58 58
     public static function deserialize(array $data)
59 59
     {
Please login to merge, or discard this patch.
src/Surfnet/StepupMiddleware/CommandHandlingBundle/Command/Command.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -24,5 +24,8 @@
 block discarded – undo
24 24
  */
25 25
 interface Command
26 26
 {
27
+    /**
28
+     * @return string
29
+     */
27 30
     public function __toString();
28 31
 }
Please login to merge, or discard this patch.
src/Surfnet/StepupMiddleware/GatewayBundle/Entity/SecondFactor.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -91,6 +91,13 @@
 block discarded – undo
91 91
      */
92 92
     private $secondFactorIdentifier;
93 93
 
94
+    /**
95
+     * @param string $identityId
96
+     * @param string $nameId
97
+     * @param string $institution
98
+     * @param string $displayLocale
99
+     * @param string $secondFactorId
100
+     */
94 101
     public function __construct(
95 102
         $identityId,
96 103
         $nameId,
Please login to merge, or discard this patch.
StepupMiddleware/GatewayBundle/Repository/SecondFactorRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
 
37 37
     /**
38 38
      * @param SecondFactorId $secondFactorId
39
-     * @return SecondFactor|null
39
+     * @return SecondFactor
40 40
      */
41 41
     public function findOneBySecondFactorId(SecondFactorId $secondFactorId)
42 42
     {
Please login to merge, or discard this patch.
Configuration/CommandHandler/ConfigurationCommandHandler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
     }
78 78
 
79 79
     /**
80
-     * @return null|\Surfnet\Stepup\Configuration\Api\Configuration
80
+     * @return \Broadway\Domain\AggregateRoot|null
81 81
      */
82 82
     private function getConfiguration()
83 83
     {
Please login to merge, or discard this patch.
ApiBundle/Identity/Value/RegistrationAuthorityCredentials.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
     }
185 185
 
186 186
     /**
187
-     * @return string
187
+     * @return Location|null
188 188
      */
189 189
     public function getLocation()
190 190
     {
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
     }
193 193
 
194 194
     /**
195
-     * @return string
195
+     * @return ContactInformation|null
196 196
      */
197 197
     public function getContactInformation()
198 198
     {
Please login to merge, or discard this patch.
src/Surfnet/Stepup/Identity/Api/Identity.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -64,6 +64,7 @@  discard block
 block discarded – undo
64 64
 
65 65
     /**
66 66
      * Construct a new aggregate root. Aggregate roots can only be affected by events, so no parameters are allowed.
67
+     * @return void
67 68
      */
68 69
     public function __construct();
69 70
 
@@ -288,6 +289,7 @@  discard block
 block discarded – undo
288 289
 
289 290
     /**
290 291
      * @param int $numberOfTokens
292
+     * @return void
291 293
      */
292 294
     public function setMaxNumberOfTokens($numberOfTokens);
293 295
 }
Please login to merge, or discard this patch.