Skip to content

Commit

Permalink
Uncomment line
Browse files Browse the repository at this point in the history
  • Loading branch information
xepozz committed Aug 31, 2023
1 parent 5c6f67b commit 9b0b4e4
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions config/params.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@
declare(strict_types=1);

use Yiisoft\Yii\Gii\Command\ControllerCommand;
use Yiisoft\Yii\Gii\Generator\ActiveRecord\Generator as ActiveRecordGenerator;
use Yiisoft\Yii\Gii\Generator\Controller\Generator;
use Yiisoft\Yii\Gii\Generator as Generators;

return [
'yiisoft/yii-debug' => [
'ignoredRequests' => [
//'/gii**',
'/gii**',
],
],
'yiisoft/yii-swagger' => [
Expand All @@ -27,11 +26,11 @@
'allowedIPs' => ['127.0.0.1', '::1'],
'generators' => [
[
'class' => Generator::class,
'class' => Generators\Controller\Generator::class,
'parameters' => [],
],
[
'class' => ActiveRecordGenerator::class,
'class' => Generators\ActiveRecord\Generator::class,
'parameters' => [],
],
],
Expand Down

0 comments on commit 9b0b4e4

Please sign in to comment.