mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-05 04:03:26 +00:00
Code optimisations.
This commit is contained in:
@@ -36,14 +36,14 @@ class AdminServiceProvider extends ServiceProvider
|
||||
/**
|
||||
* Bootstrap the application services.
|
||||
*/
|
||||
public function boot()
|
||||
public function boot(): void
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* Register the application services.
|
||||
*/
|
||||
public function register()
|
||||
public function register(): void
|
||||
{
|
||||
$this->linkType();
|
||||
}
|
||||
@@ -51,7 +51,7 @@ class AdminServiceProvider extends ServiceProvider
|
||||
/**
|
||||
* Register link type repository
|
||||
*/
|
||||
private function linkType()
|
||||
private function linkType(): void
|
||||
{
|
||||
$this->app->bind(
|
||||
LinkTypeRepositoryInterface::class,
|
||||
|
Reference in New Issue
Block a user