From 8b4ef98b4e228530df0f5c7026a415c90054ace8 Mon Sep 17 00:00:00 2001 From: Gabriel Caruso Date: Sun, 22 Apr 2018 11:20:36 -0300 Subject: [PATCH] Fix @throws annotation --- src/Formatter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Formatter.php b/src/Formatter.php index 57d47399..d4ed94a7 100644 --- a/src/Formatter.php +++ b/src/Formatter.php @@ -9,7 +9,7 @@ interface Formatter * @param mixed $content * @param mixed[] $attributes * - * @throw ContentCouldNotBeFormatted + * @throws ContentCouldNotBeFormatted */ public function format($content, array $attributes = []): string; }