@@ -278,7 +278,7 @@ public function listInvalidProperties()
278
278
$ invalidProperties = [];
279
279
280
280
$ allowedValues = $ this ->getEnumStringAllowableValues ();
281
- if (!is_null ($ this ->container ['enum_string ' ]) && !in_array ($ this ->container ['enum_string ' ], $ allowedValues )) {
281
+ if (!is_null ($ this ->container ['enum_string ' ]) && !in_array ($ this ->container ['enum_string ' ], $ allowedValues, true )) {
282
282
$ invalidProperties [] = sprintf (
283
283
"invalid value for 'enum_string', must be one of '%s' " ,
284
284
implode ("', ' " , $ allowedValues )
@@ -289,23 +289,23 @@ public function listInvalidProperties()
289
289
$ invalidProperties [] = "'enum_string_required' can't be null " ;
290
290
}
291
291
$ allowedValues = $ this ->getEnumStringRequiredAllowableValues ();
292
- if (!is_null ($ this ->container ['enum_string_required ' ]) && !in_array ($ this ->container ['enum_string_required ' ], $ allowedValues )) {
292
+ if (!is_null ($ this ->container ['enum_string_required ' ]) && !in_array ($ this ->container ['enum_string_required ' ], $ allowedValues, true )) {
293
293
$ invalidProperties [] = sprintf (
294
294
"invalid value for 'enum_string_required', must be one of '%s' " ,
295
295
implode ("', ' " , $ allowedValues )
296
296
);
297
297
}
298
298
299
299
$ allowedValues = $ this ->getEnumIntegerAllowableValues ();
300
- if (!is_null ($ this ->container ['enum_integer ' ]) && !in_array ($ this ->container ['enum_integer ' ], $ allowedValues )) {
300
+ if (!is_null ($ this ->container ['enum_integer ' ]) && !in_array ($ this ->container ['enum_integer ' ], $ allowedValues, true )) {
301
301
$ invalidProperties [] = sprintf (
302
302
"invalid value for 'enum_integer', must be one of '%s' " ,
303
303
implode ("', ' " , $ allowedValues )
304
304
);
305
305
}
306
306
307
307
$ allowedValues = $ this ->getEnumNumberAllowableValues ();
308
- if (!is_null ($ this ->container ['enum_number ' ]) && !in_array ($ this ->container ['enum_number ' ], $ allowedValues )) {
308
+ if (!is_null ($ this ->container ['enum_number ' ]) && !in_array ($ this ->container ['enum_number ' ], $ allowedValues, true )) {
309
309
$ invalidProperties [] = sprintf (
310
310
"invalid value for 'enum_number', must be one of '%s' " ,
311
311
implode ("', ' " , $ allowedValues )
@@ -325,22 +325,22 @@ public function valid()
325
325
{
326
326
327
327
$ allowedValues = $ this ->getEnumStringAllowableValues ();
328
- if (!is_null ($ this ->container ['enum_string ' ]) && !in_array ($ this ->container ['enum_string ' ], $ allowedValues )) {
328
+ if (!is_null ($ this ->container ['enum_string ' ]) && !in_array ($ this ->container ['enum_string ' ], $ allowedValues, true )) {
329
329
return false ;
330
330
}
331
331
if ($ this ->container ['enum_string_required ' ] === null ) {
332
332
return false ;
333
333
}
334
334
$ allowedValues = $ this ->getEnumStringRequiredAllowableValues ();
335
- if (!is_null ($ this ->container ['enum_string_required ' ]) && !in_array ($ this ->container ['enum_string_required ' ], $ allowedValues )) {
335
+ if (!is_null ($ this ->container ['enum_string_required ' ]) && !in_array ($ this ->container ['enum_string_required ' ], $ allowedValues, true )) {
336
336
return false ;
337
337
}
338
338
$ allowedValues = $ this ->getEnumIntegerAllowableValues ();
339
- if (!is_null ($ this ->container ['enum_integer ' ]) && !in_array ($ this ->container ['enum_integer ' ], $ allowedValues )) {
339
+ if (!is_null ($ this ->container ['enum_integer ' ]) && !in_array ($ this ->container ['enum_integer ' ], $ allowedValues, true )) {
340
340
return false ;
341
341
}
342
342
$ allowedValues = $ this ->getEnumNumberAllowableValues ();
343
- if (!is_null ($ this ->container ['enum_number ' ]) && !in_array ($ this ->container ['enum_number ' ], $ allowedValues )) {
343
+ if (!is_null ($ this ->container ['enum_number ' ]) && !in_array ($ this ->container ['enum_number ' ], $ allowedValues, true )) {
344
344
return false ;
345
345
}
346
346
return true ;
@@ -367,7 +367,7 @@ public function getEnumString()
367
367
public function setEnumString ($ enum_string )
368
368
{
369
369
$ allowedValues = $ this ->getEnumStringAllowableValues ();
370
- if (!is_null ($ enum_string ) && !in_array ($ enum_string , $ allowedValues )) {
370
+ if (!is_null ($ enum_string ) && !in_array ($ enum_string , $ allowedValues, true )) {
371
371
throw new \InvalidArgumentException (
372
372
sprintf (
373
373
"Invalid value for 'enum_string', must be one of '%s' " ,
@@ -400,7 +400,7 @@ public function getEnumStringRequired()
400
400
public function setEnumStringRequired ($ enum_string_required )
401
401
{
402
402
$ allowedValues = $ this ->getEnumStringRequiredAllowableValues ();
403
- if (!in_array ($ enum_string_required , $ allowedValues )) {
403
+ if (!in_array ($ enum_string_required , $ allowedValues, true )) {
404
404
throw new \InvalidArgumentException (
405
405
sprintf (
406
406
"Invalid value for 'enum_string_required', must be one of '%s' " ,
@@ -433,7 +433,7 @@ public function getEnumInteger()
433
433
public function setEnumInteger ($ enum_integer )
434
434
{
435
435
$ allowedValues = $ this ->getEnumIntegerAllowableValues ();
436
- if (!is_null ($ enum_integer ) && !in_array ($ enum_integer , $ allowedValues )) {
436
+ if (!is_null ($ enum_integer ) && !in_array ($ enum_integer , $ allowedValues, true )) {
437
437
throw new \InvalidArgumentException (
438
438
sprintf (
439
439
"Invalid value for 'enum_integer', must be one of '%s' " ,
@@ -466,7 +466,7 @@ public function getEnumNumber()
466
466
public function setEnumNumber ($ enum_number )
467
467
{
468
468
$ allowedValues = $ this ->getEnumNumberAllowableValues ();
469
- if (!is_null ($ enum_number ) && !in_array ($ enum_number , $ allowedValues )) {
469
+ if (!is_null ($ enum_number ) && !in_array ($ enum_number , $ allowedValues, true )) {
470
470
throw new \InvalidArgumentException (
471
471
sprintf (
472
472
"Invalid value for 'enum_number', must be one of '%s' " ,
0 commit comments