From 5d92e7432a612ec16c7fca99467b5662048a7afd Mon Sep 17 00:00:00 2001 From: Uma <uma.s@vtiger.com> Date: Tue, 12 Nov 2019 16:53:59 +0530 Subject: [PATCH] Migration module php warning addressed --- modules/Migration/models/Module.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/modules/Migration/models/Module.php b/modules/Migration/models/Module.php index 44cef6173..3190eb623 100644 --- a/modules/Migration/models/Module.php +++ b/modules/Migration/models/Module.php @@ -21,8 +21,12 @@ class Migration_Module_Model extends Vtiger_Module_Model { return $currentVersion; } - public static function getInstance() { - return new self(); + /** + * Static Function to get the instance of Vtiger Module Model for the given id or name + * @param mixed id or name of the module + */ + public static function getInstance($value) { + return new self($value); } public function getAllowedMigrationVersions(){ -- GitLab