mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-30 02:26:58 +00:00
28 lines
507 B
PHP
28 lines
507 B
PHP
![]() |
<?php
|
||
|
namespace FireflyIII;
|
||
|
|
||
|
use Illuminate\Support\ServiceProvider;
|
||
|
|
||
|
/**
|
||
|
* Class FF3ServiceProvider
|
||
|
*
|
||
|
* @package FireflyIII
|
||
|
*/
|
||
|
class FF3ServiceProvider extends ServiceProvider
|
||
|
{
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Triggered automatically by Laravel
|
||
|
*/
|
||
|
public function register()
|
||
|
{
|
||
|
// FORMAT:
|
||
|
#$this->app->bind('Interface', 'Class');
|
||
|
|
||
|
// preferences:
|
||
|
$this->app->bind('FireflyIII\Shared\Preferences\PreferencesInterface', 'FireflyIII\Shared\Preferences\Preferences');
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|