diff --git a/app/Models/Key.php b/app/Models/Key.php index cef26ef152fecaf453219094b7868b8c1d17f40a..11ba3151570922efa32485d55462186a2a87185b 100644 --- a/app/Models/Key.php +++ b/app/Models/Key.php @@ -73,8 +73,10 @@ class Key $opts = array( 'http' => array( 'method' => 'POST', - 'header' => 'Content-type: application/x-www-form-urlencoded\r\n' . - 'Authorization: Basic ' . $authKey . '\r\n', + 'header' => [ + 'Content-type: application/x-www-form-urlencoded', + 'Authorization: Basic ' . $authKey + ], 'content' => $postdata, ), );