mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-06 10:35:25 +00:00
[BUG][PHP] Parameter property style not fully implemented (related to PR4042) (#4640)
This commit is contained in:
parent
f6b4e18ac4
commit
a9bbd9334d
@ -174,6 +174,7 @@ public class CodegenParameter {
|
||||
output.isListContainer = this.isListContainer;
|
||||
output.isMapContainer = this.isMapContainer;
|
||||
output.isExplode = this.isExplode;
|
||||
output.style = this.style;
|
||||
|
||||
return output;
|
||||
}
|
||||
@ -249,7 +250,8 @@ public class CodegenParameter {
|
||||
Objects.equals(minItems, that.minItems) &&
|
||||
Objects.equals(uniqueItems, that.uniqueItems) &&
|
||||
Objects.equals(multipleOf, that.multipleOf) &&
|
||||
Objects.equals(isExplode, that.isExplode);
|
||||
Objects.equals(isExplode, that.isExplode) &&
|
||||
Objects.equals(style, that.style);
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -319,7 +321,8 @@ public class CodegenParameter {
|
||||
minItems,
|
||||
uniqueItems,
|
||||
multipleOf,
|
||||
isExplode);
|
||||
isExplode,
|
||||
style);
|
||||
}
|
||||
|
||||
@java.lang.Override
|
||||
@ -390,6 +393,7 @@ public class CodegenParameter {
|
||||
", uniqueItems=" + uniqueItems +
|
||||
", multipleOf=" + multipleOf +
|
||||
", isExplode=" + isExplode +
|
||||
", style='" + style + '\'' +
|
||||
'}';
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user