56 lines
914 B
PHP
56 lines
914 B
PHP
|
<?php namespace Illuminate\Database;
|
||
|
|
||
|
use Illuminate\Support\ServiceProvider;
|
||
|
use Illuminate\Database\Console\SeedCommand;
|
||
|
|
||
|
class SeedServiceProvider extends ServiceProvider {
|
||
|
|
||
|
/**
|
||
|
* Indicates if loading of the provider is deferred.
|
||
|
*
|
||
|
* @var bool
|
||
|
*/
|
||
|
protected $defer = true;
|
||
|
|
||
|
/**
|
||
|
* Register the service provider.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function register()
|
||
|
{
|
||
|
$this->registerSeedCommand();
|
||
|
|
||
|
$this->app->singleton('seeder', function()
|
||
|
{
|
||
|
return new Seeder;
|
||
|
});
|
||
|
|
||
|
$this->commands('command.seed');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Register the seed console command.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
protected function registerSeedCommand()
|
||
|
{
|
||
|
$this->app->singleton('command.seed', function($app)
|
||
|
{
|
||
|
return new SeedCommand($app['db']);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the services provided by the provider.
|
||
|
*
|
||
|
* @return array
|
||
|
*/
|
||
|
public function provides()
|
||
|
{
|
||
|
return array('seeder', 'command.seed');
|
||
|
}
|
||
|
|
||
|
}
|