Remove credit card liability type from system.

This commit is contained in:
James Cole
2018-09-18 18:17:55 +02:00
parent 744d45fb04
commit 3d91a186d5
6 changed files with 25 additions and 10 deletions

View File

@@ -28,7 +28,7 @@ use Illuminate\Database\Seeder;
*/
class AccountTypeSeeder extends Seeder
{
public function run()
public function run(): void
{
$types = [
AccountType::DEFAULT,
@@ -42,8 +42,7 @@ class AccountTypeSeeder extends Seeder
AccountType::LOAN,
AccountType::RECONCILIATION,
AccountType::DEBT,
AccountType::MORTGAGE,
AccountType::CREDITCARD,
AccountType::MORTGAGE
];
foreach ($types as $type) {
try {