@@ -190,39 +190,36 @@ private function generatePopulator(Operation $operation, StructureShape $shape,
190
190
$ memberShape = $ member ->getShape ();
191
191
switch ($ memberShape ->getType ()) {
192
192
case 'timestamp ' :
193
- $ body .= strtr ('$this->PROPERTY_NAME = isset($headers["LOCATION_NAME"][0]) ? new \DateTimeImmutable($headers["LOCATION_NAME"][0]) : null; ' . "\n" , [
194
- 'PROPERTY_NAME ' => $ propertyName ,
195
- 'LOCATION_NAME ' => $ locationName ,
196
- ]);
193
+ $ input = 'new \DateTimeImmutable($headers["LOCATION_NAME"][0]) ' ;
197
194
198
195
break ;
199
196
case 'integer ' :
200
197
case 'long ' :
201
- $ body .= strtr ('$this->PROPERTY_NAME = isset($headers["LOCATION_NAME"][0]) ? (int) $headers["LOCATION_NAME"][0] : null; ' . "\n" , [
202
- 'PROPERTY_NAME ' => $ propertyName ,
203
- 'LOCATION_NAME ' => $ locationName ,
204
- ]);
198
+ $ input = '(int) $headers["LOCATION_NAME"][0] ' ;
205
199
206
200
break ;
207
201
case 'boolean ' :
208
202
$ this ->requirementsRegistry ->addRequirement ('ext-filter ' );
209
203
210
- $ body .= strtr ('$this->PROPERTY_NAME = isset($headers["LOCATION_NAME"][0]) ? filter_var($headers["LOCATION_NAME"][0], FILTER_VALIDATE_BOOLEAN) : null; ' . "\n" , [
211
- 'PROPERTY_NAME ' => $ propertyName ,
212
- 'LOCATION_NAME ' => $ locationName ,
213
- ]);
204
+ $ input = 'filter_var($headers["LOCATION_NAME"][0], FILTER_VALIDATE_BOOLEAN) ' ;
214
205
215
206
break ;
216
207
case 'string ' :
217
- $ body .= strtr ('$this->PROPERTY_NAME = $headers["LOCATION_NAME"][0] ?? null; ' . "\n" , [
218
- 'PROPERTY_NAME ' => $ propertyName ,
219
- 'LOCATION_NAME ' => $ locationName ,
220
- ]);
208
+ $ input = '$headers["LOCATION_NAME"][0] ' ;
221
209
222
210
break ;
223
211
default :
224
212
throw new \RuntimeException (sprintf ('Type %s is not yet implemented ' , $ memberShape ->getType ()));
225
213
}
214
+
215
+ if (!$ member ->isRequired ()) {
216
+ $ input = 'isset($headers["LOCATION_NAME"][0]) ? ' . $ input . ' : null ' ;
217
+ }
218
+
219
+ $ body .= strtr ('$this->PROPERTY_NAME = ' . $ input . "; \n" , [
220
+ 'PROPERTY_NAME ' => $ propertyName ,
221
+ 'LOCATION_NAME ' => $ locationName ,
222
+ ]);
226
223
}
227
224
228
225
// This will catch arbitrary values that exists in undefined "headers"
0 commit comments