Skip to content

Commit

Permalink
Backport ConsoleServiceProvider.
Browse files Browse the repository at this point in the history
Signed-off-by: crynobone <[email protected]>
  • Loading branch information
crynobone committed Feb 8, 2017
1 parent 5ff4a6e commit 67f4244
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions ConsoleServiceProvider.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?php namespace Orchestra\Database;

use Illuminate\Support\ServiceProvider;
use Illuminate\Contracts\Foundation\Application;
use Orchestra\Database\Console\Migrations\ResetCommand;
use Orchestra\Database\Console\Migrations\MigrateCommand;
use Orchestra\Database\Console\Migrations\RefreshCommand;
use Orchestra\Database\Console\Migrations\RollbackCommand;

class ConsoleServiceProvider extends ServiceProvider
{
/**
* Register the service provider.
*
* @return void
*/
public function register()
{
//
}
}

0 comments on commit 67f4244

Please sign in to comment.