Completed
Push — develop ( d1a9cb...a29102 )
by
unknown
63:55 queued 62:40
created
src/Surfnet/StepupMiddlewareClient/Service/ApiService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
      *               will be URL encoded and formatted into the path string.
48 48
      *               Example: '/institution/%s/identity/%s', ['institution' => 'ab-cd', 'identity' => 'ef']
49 49
      * @param array $parameters An array containing the parameters to replace in the path.
50
-     * @param HttpQuery $httpQuery|null
50
+     * @param HttpQuery $httpQuery
51 51
      * @return null|mixed Most likely an array structure, null when the resource doesn't exist.
52 52
      * @throws AccessDeniedToResourceException When the consumer isn't authorised to access given resource.
53 53
      * @throws ResourceReadException When the server doesn't respond with the resource.
Please login to merge, or discard this patch.
src/Surfnet/StepupMiddlewareClientBundle/Command/Command.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -30,6 +30,7 @@
 block discarded – undo
30 30
     /**
31 31
      * @param string $uuid
32 32
      * @throws DomainException Thrown when UUID is already set.
33
+     * @return void
33 34
      */
34 35
     public function setUuid($uuid);
35 36
 
Please login to merge, or discard this patch.
src/Surfnet/StepupMiddlewareClientBundle/Identity/Service/RaService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
     }
65 65
 
66 66
     /**
67
-     * @param object      $value
67
+     * @param RegistrationAuthorityCredentialsCollection      $value
68 68
      * @param null|string $message
69 69
      */
70 70
     private function assertIsValid($value, $message = null)
Please login to merge, or discard this patch.
src/Surfnet/StepupMiddlewareClient/Identity/Dto/IdentitySearchQuery.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -58,6 +58,10 @@
 block discarded – undo
58 58
         return $this;
59 59
     }
60 60
 
61
+    /**
62
+     * @param string $value
63
+     * @param string $name
64
+     */
61 65
     private function assertNonEmptyString($value, $name)
62 66
     {
63 67
         $message = sprintf(
Please login to merge, or discard this patch.
src/Surfnet/StepupMiddlewareClient/Identity/Dto/ProfileSearchQuery.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -58,6 +58,10 @@
 block discarded – undo
58 58
         return $this;
59 59
     }
60 60
 
61
+    /**
62
+     * @param string $value
63
+     * @param string $name
64
+     */
61 65
     private function assertNonEmptyString($value, $name)
62 66
     {
63 67
         $message = sprintf(
Please login to merge, or discard this patch.
Surfnet/StepupMiddlewareClient/Identity/Dto/RaSecondFactorExportQuery.php 1 patch
Doc Comments   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -91,8 +91,7 @@  discard block
 block discarded – undo
91 91
     }
92 92
 
93 93
     /**
94
-     * @param string $actorInstitution
95
-     * @return VerifiedSecondFactorSearchQuery
94
+     * @return RaSecondFactorExportQuery
96 95
      */
97 96
     public function setActorId($actorId)
98 97
     {
@@ -253,6 +252,9 @@  discard block
 block discarded – undo
253 252
         $this->orderDirection = $orderDirection ?: null;
254 253
     }
255 254
 
255
+    /**
256
+     * @param string $name
257
+     */
256 258
     private function assertNonEmptyString($value, $name)
257 259
     {
258 260
         $message = sprintf(
Please login to merge, or discard this patch.
Surfnet/StepupMiddlewareClient/Identity/Dto/RaSecondFactorSearchQuery.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
 
95 95
     /**
96 96
      * @param string $actorId
97
-     * @return VerifiedSecondFactorSearchQuery
97
+     * @return RaSecondFactorSearchQuery
98 98
      */
99 99
     public function setActorId($actorId)
100 100
     {
@@ -237,6 +237,10 @@  discard block
 block discarded – undo
237 237
         $this->orderDirection = $orderDirection ?: null;
238 238
     }
239 239
 
240
+    /**
241
+     * @param string|null $value
242
+     * @param string $name
243
+     */
240 244
     private function assertNonEmptyString($value, $name)
241 245
     {
242 246
         $message = sprintf(
Please login to merge, or discard this patch.
StepupMiddlewareClientBundle/Identity/Service/RaCandidateService.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,6 @@
 block discarded – undo
70 70
 
71 71
     /**
72 72
      * @param string $identityId
73
-     * @param string $institution
74 73
      * @param string $actorId
75 74
      * @return RaCandidateInstitutions
76 75
      */
Please login to merge, or discard this patch.
Surfnet/StepupMiddlewareClientBundle/Identity/Service/RaListingService.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,6 @@
 block discarded – undo
53 53
     /**
54 54
      * @param string $id
55 55
      * @param string $institution
56
-     * @param string $actorInstitution
57 56
      * @param string $actorId
58 57
      * @return null|RaListing
59 58
      */
Please login to merge, or discard this patch.