Commit 70d263d6 by Philipp Frenzel

Update module.php

module should extend \yii\base\Module as \yii\web\Module doesn't exist... If this is outdated, then pls just ignore it!
parent c2c12a90
...@@ -16,7 +16,7 @@ echo "<?php\n"; ...@@ -16,7 +16,7 @@ echo "<?php\n";
namespace <?php echo $ns; ?>; namespace <?php echo $ns; ?>;
class <?php echo $className; ?> extends \yii\web\Module class <?php echo $className; ?> extends \yii\base\Module
{ {
public $controllerNamespace = '<?php echo $generator->getControllerNamespace(); ?>'; public $controllerNamespace = '<?php echo $generator->getControllerNamespace(); ?>';
......
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