Completed
Push — bugfix/institution-casing-in-v... ( 82557c...0b0450 )
by A.
04:19
created
ManagementBundle/Validator/ConfigurationStructureValidator.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -94,6 +94,9 @@  discard block
 block discarded – undo
94 94
         $this->validateEmailTemplatesConfiguration($configuration, 'email_templates');
95 95
     }
96 96
 
97
+    /**
98
+     * @param string $propertyPath
99
+     */
97 100
     private function validateGatewayConfiguration($configuration, $propertyPath)
98 101
     {
99 102
         Assertion::isArray($configuration['gateway'], 'Property "gateway" must have an object as value', $propertyPath);
@@ -101,6 +104,9 @@  discard block
 block discarded – undo
101 104
         $this->gatewayConfigurationValidator->validate($configuration['gateway'], $propertyPath);
102 105
     }
103 106
 
107
+    /**
108
+     * @param string $propertyPath
109
+     */
104 110
     private function validateSraaConfiguration($configuration, $propertyPath)
105 111
     {
106 112
         Assertion::isArray(
@@ -118,6 +124,9 @@  discard block
 block discarded – undo
118 124
         }
119 125
     }
120 126
 
127
+    /**
128
+     * @param string $propertyPath
129
+     */
121 130
     private function validateEmailTemplatesConfiguration($configuration, $propertyPath)
122 131
     {
123 132
         Assertion::isArray(
Please login to merge, or discard this patch.
ManagementBundle/Validator/ReconfigureInstitutionRequestValidator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -163,7 +163,7 @@
 block discarded – undo
163 163
 
164 164
     /**
165 165
      * @param string[] $institutions
166
-     * @param $configuredInstitutions
166
+     * @param string[] $configuredInstitutions
167 167
      * @return string[]
168 168
      */
169 169
     public function determineNonExistentInstitutions(array $institutions, $configuredInstitutions)
Please login to merge, or discard this patch.