From f8afa421a684536ba48614c906702dea98d24e74 Mon Sep 17 00:00:00 2001 From: Bastian Allgeier Date: Mon, 23 Sep 2024 09:55:28 +0200 Subject: [PATCH] Fix CS issues --- src/Content/PlainTextContentStorageHandler.php | 2 +- tests/Text/KirbyTagsTest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Content/PlainTextContentStorageHandler.php b/src/Content/PlainTextContentStorageHandler.php index cdddaeef59..21c2d20e86 100644 --- a/src/Content/PlainTextContentStorageHandler.php +++ b/src/Content/PlainTextContentStorageHandler.php @@ -202,7 +202,7 @@ public function exists(VersionId $versionId, Language $language): bool // @codeCoverageIgnoreStart default => throw new LogicException( message: 'Cannot determine existence for model type "' . $this->model::CLASS_ALIAS . '"' - ) + ) // @codeCoverageIgnoreEnd }; } diff --git a/tests/Text/KirbyTagsTest.php b/tests/Text/KirbyTagsTest.php index efd4e1177d..f425ded081 100644 --- a/tests/Text/KirbyTagsTest.php +++ b/tests/Text/KirbyTagsTest.php @@ -166,7 +166,7 @@ public function testParseWithExceptionDebug3() 'undefined' => [ 'html' => fn () => throw new InvalidArgumentException( message: 'Undefined tag type: undefined' - ) + ) ] ];