From 7677527aee232ca9b1354fd91196c6f862534a50 Mon Sep 17 00:00:00 2001
From: buildmaster
|
+ Important
+ |
+
+You can’t use both a String and execute to perform concatenation. E.g. calling
+header('Authorization', 'Bearer ' + execute('authToken()')) will lead to improper results.
+To make this work just call header('Authorization', execute('authToken()')) and ensure that
+the authToken() method returns everything that you need.
+ |
+