2014-08-11 10:13:20 -05:00
|
|
|
<?php namespace Providers;
|
2014-07-31 15:13:50 -05:00
|
|
|
|
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
|
|
|
|
|
|
class AppServiceProvider extends ServiceProvider {
|
|
|
|
|
|
|
|
|
|
/**
|
2014-08-12 11:58:09 -05:00
|
|
|
* Bootstrap any necessary services.
|
2014-07-31 15:13:50 -05:00
|
|
|
*
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
|
|
|
|
public function boot()
|
|
|
|
|
{
|
|
|
|
|
//
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Register the service provider.
|
|
|
|
|
*
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
|
|
|
|
public function register()
|
|
|
|
|
{
|
2014-07-31 22:59:25 -05:00
|
|
|
// This service provider is a convenient place to register your services
|
|
|
|
|
// in the IoC container. If you wish, you may make additional methods
|
|
|
|
|
// or service providers to keep the code more focused and granular.
|
|
|
|
|
|
2014-07-31 15:13:50 -05:00
|
|
|
//
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|