1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 08:24:04 +00:00

Fix arguments being initialized twice for tenants:seed command (#611)

This commit is contained in:
Michael Lundbøl 2021-03-10 12:08:51 +01:00 committed by GitHub
parent 192594ca28
commit 27e9fb4a69
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -21,6 +21,8 @@ class Seed extends SeedCommand
*/
protected $description = 'Seed tenant database(s).';
protected $name = 'tenants:seed';
/**
* Create a new command instance.
*
@ -29,9 +31,6 @@ class Seed extends SeedCommand
public function __construct(ConnectionResolverInterface $resolver)
{
parent::__construct($resolver);
$this->setName('tenants:seed');
$this->specifyParameters();
}
/**