This commit is contained in:
Taylor Otwell
2014-08-18 23:43:10 -05:00
parent 3ffbb5d6ba
commit 80a60552d7
18 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<?php namespace Providers;
use InspireCommand;
use Illuminate\Support\ServiceProvider;
class ArtisanServiceProvider extends ServiceProvider {
/**
* Register the service provider.
*
* @return void
*/
public function register()
{
$this->commands('InspireCommand');
}
}