From 9b042728a398a68c8a86e4636ac7164ab20a269a Mon Sep 17 00:00:00 2001 From: Karsten Dambekalns Date: Wed, 7 Sep 2022 18:21:34 +0200 Subject: [PATCH] Add missing class property MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit However that got lost… 😵‍💫 --- Classes/Service/CantoClient.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Classes/Service/CantoClient.php b/Classes/Service/CantoClient.php index cc1213d..6aa5b7f 100644 --- a/Classes/Service/CantoClient.php +++ b/Classes/Service/CantoClient.php @@ -76,6 +76,11 @@ final class CantoClient */ protected $accountAuthorizationRepository; + /** + * @var VariableFrontend $apiResponsesCache + */ + protected $apiResponsesCache; + public function __construct(private string $apiBaseUri, protected string $appId, protected string $appSecret, private string $serviceName) { $this->httpClient = new Client(['allow_redirects' => true]);