mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-13 00:45:55 -06:00
20 lines
225 B
PHP
20 lines
225 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
/**
|
|
* Class TestDataSeeder
|
|
*/
|
|
class TestDataSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
|
|
}
|
|
}
|