fix(php,php-nextgen): remove useless string cast from ObjectSerializer.mustache (#22121)

This commit is contained in:
Simon Podlipsky
2025-10-14 08:14:02 +03:00
committed by GitHub
parent 1240d103ff
commit 5f13c53825
7 changed files with 7 additions and 7 deletions

View File

@@ -588,6 +588,6 @@ class ObjectSerializer
}
}
return $qs ? (string) substr($qs, 0, -1) : '';
return $qs ? substr($qs, 0, -1) : '';
}
}