mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 13:54:03 +00:00
Fix arguments being initialized twice for tenants:seed command (#611)
This commit is contained in:
parent
192594ca28
commit
27e9fb4a69
1 changed files with 2 additions and 3 deletions
|
|
@ -21,6 +21,8 @@ class Seed extends SeedCommand
|
||||||
*/
|
*/
|
||||||
protected $description = 'Seed tenant database(s).';
|
protected $description = 'Seed tenant database(s).';
|
||||||
|
|
||||||
|
protected $name = 'tenants:seed';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new command instance.
|
* Create a new command instance.
|
||||||
*
|
*
|
||||||
|
|
@ -29,9 +31,6 @@ class Seed extends SeedCommand
|
||||||
public function __construct(ConnectionResolverInterface $resolver)
|
public function __construct(ConnectionResolverInterface $resolver)
|
||||||
{
|
{
|
||||||
parent::__construct($resolver);
|
parent::__construct($resolver);
|
||||||
|
|
||||||
$this->setName('tenants:seed');
|
|
||||||
$this->specifyParameters();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue