. */ /* */ /*************************************************************************************/ namespace DebugBar; use Thelia\Module\BaseModule; class DebugBar extends BaseModule { /** * YOU HAVE TO IMPLEMENT HERE ABSTRACT METHODD FROM BaseModule Class * Like install and destroy */ public function install() { // TODO: Implement install() method. } public function destroy() { // TODO: Implement destroy() method. } public function getCode() { return 'DebugBar'; } }