firefly-iii/database/seeds/DatabaseSeeder.php

34 lines
714 B
PHP
Raw Normal View History

2015-02-05 21:39:52 -06:00
<?php
/**
* DatabaseSeeder.php
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
2017-03-25 07:41:17 -05:00
declare(strict_types=1);
2016-05-20 01:57:45 -05:00
2015-02-11 00:35:10 -06:00
use Illuminate\Database\Seeder;
/**
* Class DatabaseSeeder
*/
class DatabaseSeeder extends Seeder
{
2015-02-05 21:41:00 -06:00
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
$this->call(AccountTypeSeeder::class);
$this->call(TransactionCurrencySeeder::class);
$this->call(TransactionTypeSeeder::class);
$this->call(PermissionSeeder::class);
2015-02-05 21:39:52 -06:00
2016-09-15 23:19:40 -05:00
}
2015-02-05 21:39:52 -06:00
}