[BUG][PHP] Parameter property style not fully implemented (related to PR4042) (#4640)

This commit is contained in:
Thomas Hansen 2019-11-29 09:24:54 +01:00 committed by William Cheng
parent f6b4e18ac4
commit a9bbd9334d

View File

@ -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 + '\'' +
'}';
}
}