Skip to content

Commit

Permalink
Bug fixed
Browse files Browse the repository at this point in the history
seeder class bug fixed
  • Loading branch information
Ashutosh pathak authored Mar 16, 2019
2 parents f5a3c71 + feed60b commit bd74295
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions database/seeds/DatabaseSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ public function run()
$this->call(StateSubdivision::class);
$this->call(BaseStateSubdivisionSeeder::class);
$this->call(ExtendedStateSubdivisionSeeder::class);
$this->call(StatesSeeder::class);
$this->call(TaxByStatesSeeder::class);
$this->call(TimezoneSeeder::class);

Expand Down
2 changes: 1 addition & 1 deletion database/seeds/StatesSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
use App\Model\Common\State;
use Illuminate\Database\Seeder;

class BaseStateSubdivisionSeeder extends Seeder
class StatesSeeder extends Seeder
{
/**
* Run the database seeds.
Expand Down
3 changes: 3 additions & 0 deletions storage/installed
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@ Agora Invoicing Installer successfully INSTALLED on 2019/03/13 06:59:26pm
Agora Invoicing Installer successfully UPDATED on 2019/03/13 07:07:33pm
Agora Invoicing Installer successfully UPDATED on 2019/03/15 08:17:40am
Agora Invoicing Installer successfully UPDATED on 2019/03/16 08:19:12am
Agora Invoicing Installer successfully UPDATED on 2019/03/16 08:01:50pm
Agora Invoicing Installer successfully UPDATED on 2019/03/16 08:27:10pm
Agora Invoicing Installer successfully UPDATED on 2019/03/16 08:30:29pm
1 change: 1 addition & 0 deletions vendor/composer/autoload_classmap.php
Original file line number Diff line number Diff line change
Expand Up @@ -5483,6 +5483,7 @@
'Spatie\\String\\Integrations\\Underscore' => $vendorDir . '/spatie/string/src/Integrations/Underscore.php',
'Spatie\\String\\Str' => $vendorDir . '/spatie/string/src/Str.php',
'StateSubdivision' => $baseDir . '/database/seeds/StateSubdivision.php',
'StatesSeeder' => $baseDir . '/database/seeds/StatesSeeder.php',
'StatusSettingSeeder' => $baseDir . '/database/seeds/DatabaseSeeder.php',
'Svg\\DefaultStyle' => $vendorDir . '/phenx/php-svg-lib/src/Svg/DefaultStyle.php',
'Svg\\Document' => $vendorDir . '/phenx/php-svg-lib/src/Svg/Document.php',
Expand Down
1 change: 1 addition & 0 deletions vendor/composer/autoload_static.php
Original file line number Diff line number Diff line change
Expand Up @@ -6309,6 +6309,7 @@ class ComposerStaticInitbb14d002d94c2a0afc906c0d693f6d84
'Spatie\\String\\Integrations\\Underscore' => __DIR__ . '/..' . '/spatie/string/src/Integrations/Underscore.php',
'Spatie\\String\\Str' => __DIR__ . '/..' . '/spatie/string/src/Str.php',
'StateSubdivision' => __DIR__ . '/../..' . '/database/seeds/StateSubdivision.php',
'StatesSeeder' => __DIR__ . '/../..' . '/database/seeds/StatesSeeder.php',
'StatusSettingSeeder' => __DIR__ . '/../..' . '/database/seeds/DatabaseSeeder.php',
'Svg\\DefaultStyle' => __DIR__ . '/..' . '/phenx/php-svg-lib/src/Svg/DefaultStyle.php',
'Svg\\Document' => __DIR__ . '/..' . '/phenx/php-svg-lib/src/Svg/Document.php',
Expand Down

0 comments on commit bd74295

Please sign in to comment.