From 80f3988f4ddc5fb5ba9086ed6117f203cd462098 Mon Sep 17 00:00:00 2001 From: Marc Beinder Date: Sat, 11 Jan 2025 20:09:45 -0600 Subject: [PATCH] [Common] Create Experimental Action --- src/Common/src/Actions/Action.php | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/Common/src/Actions/Action.php diff --git a/src/Common/src/Actions/Action.php b/src/Common/src/Actions/Action.php new file mode 100644 index 0000000..e10fd30 --- /dev/null +++ b/src/Common/src/Actions/Action.php @@ -0,0 +1,21 @@ +handle(); + } + + public static function make(...$params): static + { + return new static(...$params); + } +} \ No newline at end of file