mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-27 19:31:01 -06:00
28 lines
601 B
PHP
28 lines
601 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;
|
|
}
|
|
);
|
|
$this->app->bind(
|
|
'navigation', function () {
|
|
return new \FireflyIII\Support\Navigation;
|
|
}
|
|
);
|
|
$this->app->bind(
|
|
'amount', function () {
|
|
return new \FireflyIII\Support\Amount;
|
|
}
|
|
);
|
|
}
|
|
|
|
} |