Files
firefly-iii/app/Providers/AppServiceProvider.php

44 lines
870 B
PHP
Raw Normal View History

2015-02-06 04:52:16 +01:00
<?php namespace FireflyIII\Providers;
2015-02-06 04:39:52 +01:00
use Illuminate\Support\ServiceProvider;
2015-02-11 07:35:10 +01:00
/**
* Class AppServiceProvider
*
* @package FireflyIII\Providers
2015-05-25 19:58:13 +02:00
*
* @codeCoverageIgnore
2015-02-11 07:35:10 +01:00
*/
class AppServiceProvider extends ServiceProvider
{
2015-02-06 04:39:52 +01:00
2015-02-11 07:35:10 +01:00
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
//
}
2015-02-06 04:39:52 +01:00
2015-02-11 07:35:10 +01:00
/**
* Register any application services.
*
* This service provider is a great spot to register your various container
* bindings with the application. As you can see, we are registering our
* "Registrar" implementation here. You can add your own bindings too!
*
* @return void
*/
public function register()
{
$this->app->bind(
'Illuminate\Contracts\Auth\Registrar',
'FireflyIII\Services\Registrar'
);
2015-05-01 18:44:49 +02:00
2015-02-11 07:35:10 +01:00
}
2015-02-06 04:39:52 +01:00
}