mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-05 04:03:26 +00:00
18 lines
325 B
PHP
18 lines
325 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace FireflyIII\Providers;
|
||
|
|
||
|
use Illuminate\Support\ServiceProvider;
|
||
|
|
||
|
class FireflyServiceProvider extends ServiceProvider
|
||
|
{
|
||
|
public function register()
|
||
|
{
|
||
|
$this->app->bind(
|
||
|
'preferences', function () {
|
||
|
return new \FireflyIII\Support\Preferences;
|
||
|
}
|
||
|
);
|
||
|
}
|
||
|
|
||
|
}
|