Completed
Push — feature/events-creating-instit... ( d6e8c9...6b4a02 )
by A.
04:39
created
ManagementBundle/Validator/ConfigurationStructureValidator.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -98,6 +98,9 @@  discard block
 block discarded – undo
98 98
         );
99 99
     }
100 100
 
101
+    /**
102
+     * @param string $propertyPath
103
+     */
101 104
     private function validateGatewayConfiguration($configuration, $propertyPath)
102 105
     {
103 106
         Assert::isArray($configuration['gateway'], 'Property "gateway" must have an object as value', $propertyPath);
@@ -105,6 +108,9 @@  discard block
 block discarded – undo
105 108
         $this->gatewayConfigurationValidator->validate($configuration['gateway'], $propertyPath);
106 109
     }
107 110
 
111
+    /**
112
+     * @param string $propertyPath
113
+     */
108 114
     private function validateSraaConfiguration($configuration, $propertyPath)
109 115
     {
110 116
         Assert::isArray(
@@ -122,6 +128,9 @@  discard block
 block discarded – undo
122 128
         }
123 129
     }
124 130
 
131
+    /**
132
+     * @param string $propertyPath
133
+     */
125 134
     private function validateEmailTemplatesConfiguration($configuration, $propertyPath)
126 135
     {
127 136
         Assert::isArray(
@@ -133,6 +142,9 @@  discard block
 block discarded – undo
133 142
         $this->emailTemplatesConfigurationValidator->validate($configuration['email_templates'], $propertyPath);
134 143
     }
135 144
 
145
+    /**
146
+     * @param string $propertyPath
147
+     */
136 148
     private function validateInstitutionsWithPersonalRaDetailsConfiguration($configuration, $propertyPath)
137 149
     {
138 150
         Assert::isArray(
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.