mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-03 03:00:14 +00:00
34 lines
734 B
PHP
34 lines
734 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;
|
|
}
|
|
);
|
|
|
|
$this->app->bind(
|
|
'steam', function () {
|
|
return new \FireflyIII\Support\Steam;
|
|
}
|
|
);
|
|
}
|
|
|
|
} |