Fixed definition of $header

Removed the "," at the end of the $header-definition, since this made the script stop working
This commit is contained in:
sbsatwork 2022-12-16 16:26:44 +01:00 committed by GitHub
parent cf70522a80
commit 6b8de0222c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@
{
$headers = [
'Authorization: Bearer '.$this->token,
'Content-Type: multipart/form-data',
'Content-Type: multipart/form-data'
];
$ch = curl_init();