Skip to content

Commit

Permalink
Fixed Bugs Path
Browse files Browse the repository at this point in the history
  • Loading branch information
sugeng-sulistiyawan committed Aug 16, 2023
1 parent 1424789 commit 12775ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/SeederController.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ class SeederController extends Controller
public $modelNamespace = 'common\models';

/** @var string path view template table seeder, support path alias */
public $templateSeederFile = '@vendor/diecoding/yii2-seeder/src/views/Seeder.php';
public $templateSeederFile = __DIR__ . '/views/Seeder.php';

/** @var string path view template seeder, support path alias */
public $templateTableFile = '@vendor/diecoding/yii2-seeder/src/views/TableSeeder.php';
public $templateTableFile = __DIR__ . '/views/TableSeeder.php';

/** @var bool run on production or Seeder on YII_ENV === 'prod' */
public $runOnProd;
Expand Down

0 comments on commit 12775ce

Please sign in to comment.