Skip to content

Commit

Permalink
Fix file path
Browse files Browse the repository at this point in the history
  • Loading branch information
pxlrbt committed Aug 15, 2023
1 parent 73e974d commit 3697653
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Commands/SeedDatabaseStateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ protected function seedStates(): void

protected function getFilePath(): string
{
return database_path('States');
return database_path('states');
}

protected function getStateClasses(): Collection
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/SeedTenantsDatabaseStateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ public function handle(): int

protected function getFilePath(): string
{
return database_path('States/Tenant');
return database_path('states/Tenant');
}
}

0 comments on commit 3697653

Please sign in to comment.