2015-02-06 04:39:52 +01:00
|
|
|
<?php
|
2016-09-17 07:57:32 +02:00
|
|
|
/**
|
|
|
|
* DatabaseSeeder.php
|
|
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
|
|
*
|
2016-10-05 06:52:15 +02:00
|
|
|
* 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.
|
2016-09-17 07:57:32 +02:00
|
|
|
*/
|
2017-03-25 13:41:17 +01:00
|
|
|
declare(strict_types=1);
|
2016-05-20 08:57:45 +02:00
|
|
|
|
2015-02-11 07:35:10 +01:00
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class DatabaseSeeder
|
|
|
|
*/
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
|
|
{
|
2015-02-06 04:41:00 +01:00
|
|
|
/**
|
|
|
|
* Run the database seeds.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function run()
|
|
|
|
{
|
2016-09-16 07:16:09 +02:00
|
|
|
$this->call(AccountTypeSeeder::class);
|
|
|
|
$this->call(TransactionCurrencySeeder::class);
|
|
|
|
$this->call(TransactionTypeSeeder::class);
|
|
|
|
$this->call(PermissionSeeder::class);
|
2015-02-06 04:39:52 +01:00
|
|
|
|
2016-09-16 06:19:40 +02:00
|
|
|
}
|
2015-02-06 04:39:52 +01:00
|
|
|
}
|