From 1544d1fe5b16f86c01bda66326f7fd98a6288cef Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Sat, 24 Dec 2022 18:59:54 +0100 Subject: [PATCH] Update --- lib/Loop.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/Loop.php b/lib/Loop.php index 9c65b79..eea1686 100644 --- a/lib/Loop.php +++ b/lib/Loop.php @@ -11,13 +11,14 @@ namespace danog\Loop; use danog\Loop\Interfaces\LoopInterface; use danog\Loop\Traits\Loop as TraitsLoop; +use Stringable; /** * Loop abstract class. * * @author Daniil Gentili */ -abstract class Loop implements LoopInterface +abstract class Loop implements LoopInterface, Stringable { use TraitsLoop; }