From 375cd0c00c1654e3379d82513f325f7ab677af6c Mon Sep 17 00:00:00 2001 From: Mohamed Ali Rajab Date: Wed, 11 Dec 2024 16:35:04 +0100 Subject: [PATCH] Update: Correct @see reference for module tabs - The @see annotation in the ModuleCore class has been updated to reflect the correct path for the registerTabs method. - Changed the reference from PrestaShop\Adapter\Module\Tab\RegisterTabs to PrestaShop\Adapter\Module\Tab\ModuleTabRegister->registerTabs. - This ensures better clarity and accuracy in the documentation of the codebase. --- classes/module/Module.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/module/Module.php b/classes/module/Module.php index f86740d2dce63..4add63f624b7d 100755 --- a/classes/module/Module.php +++ b/classes/module/Module.php @@ -216,7 +216,7 @@ abstract class ModuleCore implements ModuleInterface /** * @var array array of arrays representing tabs added by this module * - * @see PrestaShop\PrestaShop\Adapter\Module\Tab\RegisterTabs($module) + * @see PrestaShop\PrestaShop\Adapter\Module\Tab\ModuleTabRegister->registerTabs($module) */ protected $tabs = [];