mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-09 14:18:59 +00:00
chore: reformat code.
This commit is contained in:
@@ -44,6 +44,19 @@ class FireflySessionProvider extends ServiceProvider
|
||||
$this->app->singleton(StartFireflySession::class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Register the session manager instance.
|
||||
*/
|
||||
protected function registerSessionManager(): void
|
||||
{
|
||||
$this->app->singleton(
|
||||
'session',
|
||||
function ($app) {
|
||||
return new SessionManager($app);
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Register the session driver instance.
|
||||
*/
|
||||
@@ -59,17 +72,4 @@ class FireflySessionProvider extends ServiceProvider
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Register the session manager instance.
|
||||
*/
|
||||
protected function registerSessionManager(): void
|
||||
{
|
||||
$this->app->singleton(
|
||||
'session',
|
||||
function ($app) {
|
||||
return new SessionManager($app);
|
||||
}
|
||||
);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user