Commit bba8702a authored by Shakarim Sapa's avatar Shakarim Sapa

- Fix

parent 95457da8
...@@ -5,8 +5,7 @@ namespace common\modules\cases; ...@@ -5,8 +5,7 @@ namespace common\modules\cases;
/** /**
* Cases module definition class * Cases module definition class
*/ */
class Module extends \common\components\WebModule class Module extends \common\components\WebModule {
{
/** /**
* @inheritdoc * @inheritdoc
*/ */
...@@ -22,6 +21,16 @@ class Module extends \common\components\WebModule ...@@ -22,6 +21,16 @@ class Module extends \common\components\WebModule
*/ */
public $menu_icons = 'fa fa-file-o'; public $menu_icons = 'fa fa-file-o';
/**
* @inheritdoc
*/
public function init()
{
parent::init();
// custom initialization code goes here
}
/** /**
* @return string * @return string
*/ */
...@@ -46,16 +55,6 @@ class Module extends \common\components\WebModule ...@@ -46,16 +55,6 @@ class Module extends \common\components\WebModule
return '1.0'; return '1.0';
} }
/**
* @inheritdoc
*/
public function init()
{
parent::init();
// custom initialization code goes here
}
/** /**
* @return array * @return array
*/ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment