From 3d9fead463f0071e9b94eeceeb8c3234829870a6 Mon Sep 17 00:00:00 2001 From: Eugene Molotov Date: Tue, 20 Sep 2022 21:17:57 +0500 Subject: [PATCH] [ActionFactory] Allow camel-case action names (#3044) Dash symbol is used to convert dash-seperated string to camel-cased string --- lib/ActionFactory.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/ActionFactory.php b/lib/ActionFactory.php index 5a413767..c97891b7 100644 --- a/lib/ActionFactory.php +++ b/lib/ActionFactory.php @@ -26,7 +26,8 @@ class ActionFactory */ public function create(string $name): ActionInterface { - $name = ucfirst(strtolower($name)) . 'Action'; + $name = strtolower($name) . 'Action'; + $name = implode(array_map('ucfirst', explode('-', $name))); $filePath = $this->folder . $name . '.php'; if (!file_exists($filePath)) { throw new \Exception('Invalid action');