Skip to content

Commit d78d1e5

Browse files
committed
remove extra comma
1 parent 6dfebe2 commit d78d1e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/php/src/Services/Service.php.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ class {{ service.name | caseUcfirst }} extends Service
102102
{% if parameter.isUploadID %}
103103
if(${{ parameter.name | caseCamel | escapeKeyword }} != 'unique()') {
104104
try {
105-
$response = $this->client->call(Client::METHOD_GET, $path . '/' . ${{ parameter.name }},);
105+
$response = $this->client->call(Client::METHOD_GET, $path . '/' . ${{ parameter.name }});
106106
$counter = $response['chunksUploaded'] ?? 0;
107107
} catch(\Exception $e) {
108108
}

0 commit comments

Comments
 (0)