Fix up the seeder command

This commit is contained in:
James Brooks
2015-08-07 11:44:51 +01:00
parent a05496f7d0
commit 79f66fc090
3 changed files with 27 additions and 0 deletions

View File

@@ -44,6 +44,8 @@ class DemoSeederCommand extends Command
/**
* Execute the console command.
*
* @return void
*/
public function fire()
{

View File

@@ -0,0 +1,25 @@
<?php
/*
* This file is part of Cachet.
*
* (c) Alt Three Services Limited
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Run the database seeding.
*
* @return void
*/
public function run()
{
//
}
}