mirror of
https://github.com/devfake/flox.git
synced 2024-11-16 07:02:31 +01:00
17 lines
241 B
PHP
17 lines
241 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
// $this->call(UsersTableSeeder::class);
|
|
}
|
|
}
|