@@ -98,6 +98,9 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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( |
@@ -184,7 +184,7 @@ discard block |
||
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 |
||
192 | 192 | } |
193 | 193 | |
194 | 194 | /** |
195 | - * @return string |
|
195 | + * @return ContactInformation|null |
|
196 | 196 | */ |
197 | 197 | public function getContactInformation() |
198 | 198 | { |