Fixed the range thing

This commit is contained in:
James Cole
2015-02-06 20:43:19 +01:00
parent 1b54b14671
commit c4d8a0da05
6 changed files with 395 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<?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;
}
);
}
}