mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06: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'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
}
|