Completed
Push — master ( 47ceaa...b644ff )
by
unknown
02:28
created
StepupMiddlewareClient/Identity/Dto/UnverifiedSecondFactorSearchQuery.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/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.
StepupMiddlewareClient/Identity/Dto/VettedSecondFactorSearchQuery.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 patch added patch discarded remove patch
@@ -212,6 +212,10 @@
 block discarded – undo
212 212
         $this->orderDirection = $orderDirection ?: null;
213 213
     }
214 214
 
215
+    /**
216
+     * @param string|null $value
217
+     * @param string $name
218
+     */
215 219
     private function assertNonEmptyString($value, $name)
216 220
     {
217 221
         $message = sprintf(
Please login to merge, or discard this patch.
StepupMiddlewareClient/Identity/Dto/VerifiedSecondFactorSearchQuery.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,6 @@  discard block
 block discarded – undo
100 100
     }
101 101
 
102 102
     /**
103
-     * @param string $actorInstitution
104 103
      * @return VerifiedSecondFactorSearchQuery
105 104
      */
106 105
     public function setActorId($actorId)
@@ -112,6 +111,9 @@  discard block
 block discarded – undo
112 111
         return $this;
113 112
     }
114 113
 
114
+    /**
115
+     * @param string $name
116
+     */
115 117
     private function assertNonEmptyString($value, $name)
116 118
     {
117 119
         $message = sprintf(
Please login to merge, or discard this patch.
src/Surfnet/StepupMiddlewareClient/Identity/Dto/RaCandidateSearchQuery.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
     private $secondFactorTypes = [];
65 65
 
66 66
     /**
67
-     * @param string $institution
67
+     * @param string $actorInstitution
68 68
      * @param int    $pageNumber
69 69
      */
70 70
     public function __construct($actorInstitution, $pageNumber)
Please login to merge, or discard this patch.
src/Surfnet/StepupMiddlewareClient/Identity/Dto/RaListingSearchQuery.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     private $orderDirection = 'asc';
45 45
 
46 46
     /**
47
-     * @param string $institution
47
+     * @param string $actorInstitution
48 48
      * @param int    $pageNumber
49 49
      */
50 50
     public function __construct($actorInstitution, $pageNumber)
@@ -87,6 +87,9 @@  discard block
 block discarded – undo
87 87
         return $this;
88 88
     }
89 89
 
90
+    /**
91
+     * @param string $parameterName
92
+     */
90 93
     private function assertNonEmptyString($value, $parameterName)
91 94
     {
92 95
         $message = sprintf(
Please login to merge, or discard this patch.