Skip to content

Commit 3697653

Browse files
committed
Fix file path
1 parent 73e974d commit 3697653

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Commands/SeedDatabaseStateCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ protected function seedStates(): void
4646

4747
protected function getFilePath(): string
4848
{
49-
return database_path('States');
49+
return database_path('states');
5050
}
5151

5252
protected function getStateClasses(): Collection

src/Commands/SeedTenantsDatabaseStateCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ public function handle(): int
3838

3939
protected function getFilePath(): string
4040
{
41-
return database_path('States/Tenant');
41+
return database_path('states/Tenant');
4242
}
4343
}

0 commit comments

Comments
 (0)