Lots of cleanup and stuff.

This commit is contained in:
James Cole
2015-06-06 23:09:12 +02:00
parent 1a1f127993
commit 40b3097374
61 changed files with 361 additions and 323 deletions

View File

@@ -30,7 +30,7 @@ class FireflyServiceProvider extends ServiceProvider
public function boot()
{
Validator::resolver(
function($translator, $data, $rules, $messages) {
function ($translator, $data, $rules, $messages) {
return new FireflyValidator($translator, $data, $rules, $messages);
}
);
@@ -55,28 +55,28 @@ class FireflyServiceProvider extends ServiceProvider
$this->app->bind(
'preferences', function() {
'preferences', function () {
return new Preferences;
}
);
$this->app->bind(
'navigation', function() {
'navigation', function () {
return new Navigation;
}
);
$this->app->bind(
'amount', function() {
'amount', function () {
return new Amount;
}
);
$this->app->bind(
'steam', function() {
'steam', function () {
return new Steam;
}
);
$this->app->bind(
'expandedform', function() {
'expandedform', function () {
return new ExpandedForm;
}
);