From 094292a3ec563814281b24d299b681a1103684ce Mon Sep 17 00:00:00 2001 From: magdev Date: Fri, 13 Sep 2024 02:40:08 +0200 Subject: [PATCH] missing use statement --- src/Client/RedmineClient.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Client/RedmineClient.php b/src/Client/RedmineClient.php index 879f0e2..8f2c527 100644 --- a/src/Client/RedmineClient.php +++ b/src/Client/RedmineClient.php @@ -5,6 +5,7 @@ namespace Magdev\RedmineBundle\Client; use Redmine\Client\Psr18Client; use GuzzleHttp\Client as GuzzleClient; use GuzzleHttp\Psr7\HttpFactory as GuzzleHttpFactory; +use Symfony\Contracts\Cache\ItemInterface; use Symfony\Contracts\Cache\TagAwareCacheInterface; final class RedmineClient