firefly-iii/app/Providers/FireflyServiceProvider.php

18 lines
325 B
PHP
Raw Normal View History

2015-02-06 13:43:19 -06:00
<?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;
}
);
}
}