Use PSR-12 code style

This commit is contained in:
James Cole
2022-10-30 14:24:28 +01:00
parent 2eebcb21f1
commit f53923f16c
187 changed files with 429 additions and 482 deletions

View File

@@ -103,66 +103,66 @@ class FireflyServiceProvider extends ServiceProvider
$this->app->bind(
'preferences',
static function () {
return new Preferences;
return new Preferences();
}
);
$this->app->bind(
'fireflyconfig',
static function () {
return new FireflyConfig;
return new FireflyConfig();
}
);
$this->app->bind(
'navigation',
static function () {
return new Navigation;
return new Navigation();
}
);
$this->app->bind(
'amount',
static function () {
return new Amount;
return new Amount();
}
);
$this->app->bind(
'steam',
static function () {
return new Steam;
return new Steam();
}
);
$this->app->bind(
'expandedform',
static function () {
return new ExpandedForm;
return new ExpandedForm();
}
);
$this->app->bind(
'accountform',
static function () {
return new AccountForm;
return new AccountForm();
}
);
$this->app->bind(
'currencyform',
static function () {
return new CurrencyForm;
return new CurrencyForm();
}
);
$this->app->bind(
'piggybankform',
static function () {
return new PiggyBankForm;
return new PiggyBankForm();
}
);
$this->app->bind(
'ruleform',
static function () {
return new RuleForm;
return new RuleForm();
}
);