diff --git a/src/utils/Utils.php b/src/utils/Utils.php index a27a62ca7..fff7aa293 100644 --- a/src/utils/Utils.php +++ b/src/utils/Utils.php @@ -33,7 +33,7 @@ class Utils{ public static function getCallableIdentifier(callable $variable){ if(is_array($variable)){ - return sha1(strtolower(get_class($variable))."::".strtolower($variable[1])); + return sha1(strtolower(get_class($variable[0]))."::".strtolower($variable[1])); }else{ return sha1(strtolower($variable)); }