From 73a5870edc89079e1566389d5fec08853d760bc5 Mon Sep 17 00:00:00 2001 From: Nils Werner Date: Thu, 1 Jun 2023 09:54:48 +0200 Subject: [PATCH] Add new feature --- src/Component.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Component.php b/src/Component.php index 5d6da9a..4b06fdc 100644 --- a/src/Component.php +++ b/src/Component.php @@ -19,4 +19,9 @@ public function doSomething(int $input): bool return false; } } + + public function doSomethingElse(int $input): void + { + echo $input; + } }