From 54380950eb8a09badf70fa1e0a58b2b540828d23 Mon Sep 17 00:00:00 2001 From: Hide_D Date: Sat, 11 Mar 2023 21:14:29 +0900 Subject: [PATCH] misc: PHP type hint --- hwe/sammo/Event/Action.php | 1 + 1 file changed, 1 insertion(+) diff --git a/hwe/sammo/Event/Action.php b/hwe/sammo/Event/Action.php index 27b8d393..e6a7c6cf 100644 --- a/hwe/sammo/Event/Action.php +++ b/hwe/sammo/Event/Action.php @@ -20,6 +20,7 @@ abstract class Action{ } $args = array_slice($actionArgs, 1); + /** @var \ReflectionClass */ $ref = new \ReflectionClass($className); return $ref->newInstanceArgs($args); }