forked from loafle/openapi-generator-original
fix(php,php-nextgen): remove useless string cast from ObjectSerializer.mustache (#22121)
This commit is contained in:
@@ -588,6 +588,6 @@ class ObjectSerializer
|
||||
}
|
||||
}
|
||||
|
||||
return $qs ? (string) substr($qs, 0, -1) : '';
|
||||
return $qs ? substr($qs, 0, -1) : '';
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user