From 9937fab026c20954666327fc31cb90348dfa3c7a Mon Sep 17 00:00:00 2001 From: Jono Hall Date: Wed, 7 Apr 2021 11:03:42 +1200 Subject: [PATCH] Add additionalHeaders to the header of the request --- src/PrintNode/Request.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PrintNode/Request.php b/src/PrintNode/Request.php index e87543d..4352cb5 100755 --- a/src/PrintNode/Request.php +++ b/src/PrintNode/Request.php @@ -240,7 +240,7 @@ public function getHeaders() $headers[] = 'X-Dont-Log: 1'; } - return \array_merge($headers, $this->getCredentialHeader()); + return \array_merge($headers, $this->getCredentialHeader(), $this->additionalHeaders); }