From 896c471afa61097f97d4e4f1f346ad31dcfc2daf Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Thu, 9 Sep 2021 14:56:10 +0200 Subject: [PATCH] Fix return types --- ClearableErrorsInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ClearableErrorsInterface.php b/ClearableErrorsInterface.php index e609bed02..a05ece05a 100644 --- a/ClearableErrorsInterface.php +++ b/ClearableErrorsInterface.php @@ -25,5 +25,5 @@ interface ClearableErrorsInterface * * @return $this */ - public function clearErrors(bool $deep = false); + public function clearErrors(bool $deep = false): static; }