Skip to content

Commit

Permalink
Remove generators from params (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
vjik authored Oct 5, 2023
1 parent d0be050 commit e10310c
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions config/params.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
declare(strict_types=1);

use Yiisoft\Yii\Gii\Command\ControllerCommand;
use Yiisoft\Yii\Gii\Generator as Generators;

return [
'yiisoft/yii-debug' => [
Expand All @@ -24,16 +23,7 @@
'yiisoft/yii-gii' => [
'enabled' => true,
'allowedIPs' => ['127.0.0.1', '::1'],
'generators' => [
[
'class' => Generators\Controller\Generator::class,
'parameters' => [],
],
[
'class' => Generators\ActiveRecord\Generator::class,
'parameters' => [],
],
],
'generators' => [],
'parameters' => [
'templates' => [],
],
Expand Down

0 comments on commit e10310c

Please sign in to comment.