Making the default PHP package name more generic instead of being specific to Petstore

This commit is contained in:
who 2015-04-13 16:27:30 -07:00
parent 42829ffb13
commit de25d63838

View File

@ -28,8 +28,7 @@ public class PhpClientCodegen extends DefaultCodegen implements CodegenConfig {
public PhpClientCodegen() {
super();
//TODO determine hte package name from host name
invokerPackage = camelize("SwaggerPetstore");
invokerPackage = camelize("SwaggerClient");
String packagePath = invokerPackage + "-php";