@@ -94,6 +94,9 @@ discard block |
||
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 |
||
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 |
||
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( |
@@ -163,7 +163,7 @@ |
||
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) |