mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06: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;
|
||
|
}
|
||
|
);
|
||
|
}
|
||
|
|
||
|
}
|