mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-30 14:58:02 +00:00
20 lines
394 B
PHP
20 lines
394 B
PHP
|
|
<?php
|
||
|
|
namespace Firefly\Storage;
|
||
|
|
|
||
|
|
use Illuminate\Support\ServiceProvider;
|
||
|
|
|
||
|
|
class StorageServiceProvider extends ServiceProvider
|
||
|
|
{
|
||
|
|
|
||
|
|
|
||
|
|
// Triggered automatically by Laravel
|
||
|
|
public function register()
|
||
|
|
{
|
||
|
|
// storage:
|
||
|
|
$this->app->bind(
|
||
|
|
'Firefly\Storage\User\UserRepositoryInterface',
|
||
|
|
'Firefly\Storage\User\EloquentUserRepository'
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|