Skip to content

Commit 0b115c6

Browse files
committed
fixed some typo
1 parent 3f797e5 commit 0b115c6

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ composer require php-monsters/laravel-worldwide
6969
## Usage
7070
Now run the following command to install.
7171
```bash
72-
php artisan world:install
72+
php artisan worldwide:install
7373
```
7474

7575
Add seeder File in `database\seeders\DatabaseSeeder.php` add this line to use `php artisan db:seed` command.

database/seeders/BaseWorldSeeder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
use PhpMonsters\Worldwide\Models\City;
88
use PhpMonsters\Worldwide\Models\Country;
99
use PhpMonsters\Worldwide\Models\State;
10-
use PhpMonsters\Worldwide\World;
10+
use PhpMonsters\Worldwide\Worldwide;
1111

1212
class BaseWorldSeeder extends Seeder
1313
{
1414
public function __construct(
15-
protected World $serves
15+
protected Worldwide $serves
1616
) {}
1717

1818
/**

tests/TestCase.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,5 @@ protected function getPackageProviders($app): array
2323
public function getEnvironmentSetUp($app): void
2424
{
2525
config()->set('database.default', 'testing');
26-
27-
/*
28-
$migration = include __DIR__.'/../database/migrations/create_world_table.php.stub';
29-
$migration->up();
30-
*/
3126
}
3227
}

0 commit comments

Comments
 (0)