From 023ae052d8e18c65bb2c7018e1f0389127ab089b Mon Sep 17 00:00:00 2001 From: Ivo Valchev Date: Fri, 14 Feb 2020 17:03:52 +0100 Subject: [PATCH] Update NewsWidget.php --- src/NewsWidget.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/NewsWidget.php b/src/NewsWidget.php index 5b995dd..44b493b 100644 --- a/src/NewsWidget.php +++ b/src/NewsWidget.php @@ -9,17 +9,17 @@ use Bolt\Common\Str; use Bolt\Version; use Bolt\Widget\BaseWidget; -use Bolt\Widget\CacheAware; +use Bolt\Widget\CacheAwareInterface; use Bolt\Widget\CacheTrait; use Bolt\Widget\Injector\AdditionalTarget; use Bolt\Widget\Injector\RequestZone; -use Bolt\Widget\RequestAware; -use Bolt\Widget\StopwatchAware; +use Bolt\Widget\RequestAwareInterface; +use Bolt\Widget\StopwatchAwareInterface; use Bolt\Widget\StopwatchTrait; -use Bolt\Widget\TwigAware; +use Bolt\Widget\TwigAwareInterface; use Symfony\Component\HttpClient\HttpClient; -class NewsWidget extends BaseWidget implements TwigAware, RequestAware, CacheAware, StopwatchAware +class NewsWidget extends BaseWidget implements TwigAwareInterface, RequestAwareInterface, CacheAwareInterface, StopwatchAwareInterface { use CacheTrait; use StopwatchTrait;