Skip to content

Commit

Permalink
Fix arguments being initialized twice for tenants:seed command (#611)
Browse files Browse the repository at this point in the history
  • Loading branch information
morloderex authored Mar 10, 2021
1 parent 192594c commit 27e9fb4
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/Commands/Seed.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ class Seed extends SeedCommand
*/
protected $description = 'Seed tenant database(s).';

protected $name = 'tenants:seed';

/**
* Create a new command instance.
*
Expand All @@ -29,9 +31,6 @@ class Seed extends SeedCommand
public function __construct(ConnectionResolverInterface $resolver)
{
parent::__construct($resolver);

$this->setName('tenants:seed');
$this->specifyParameters();
}

/**
Expand Down

0 comments on commit 27e9fb4

Please sign in to comment.