From 003fd05a6888e0ce05d774729db8570ad7a421c8 Mon Sep 17 00:00:00 2001 From: Tobias Werth Date: Fri, 28 Feb 2025 15:47:22 +0000 Subject: [PATCH] No need to declare implementing `Stringable`. It's already part of the `ResourceInterface` which is one of the super classes. --- webapp/src/Config/OptionalFileResource.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/src/Config/OptionalFileResource.php b/webapp/src/Config/OptionalFileResource.php index aa0a82b656..50da3fc739 100644 --- a/webapp/src/Config/OptionalFileResource.php +++ b/webapp/src/Config/OptionalFileResource.php @@ -14,7 +14,7 @@ * @see FileResource * @see FileExistenceResource */ -class OptionalFileResource implements SelfCheckingResourceInterface, Stringable +class OptionalFileResource implements SelfCheckingResourceInterface { private readonly bool $exists;