chore: code cleanup.

This commit is contained in:
James Cole
2023-05-29 13:56:55 +02:00
parent 7f7644c92f
commit 1b52147a05
295 changed files with 12418 additions and 12324 deletions

View File

@@ -44,19 +44,6 @@ 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.
*/
@@ -72,4 +59,17 @@ class FireflySessionProvider extends ServiceProvider
}
);
}
/**
* Register the session manager instance.
*/
protected function registerSessionManager(): void
{
$this->app->singleton(
'session',
function ($app) {
return new SessionManager($app);
}
);
}
}