mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-01-16 19:05:08 -05:00
31 lines
527 B
PHP
31 lines
527 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use App\Repositories\UserRepository;
|
|
use App\Repositories\UserRepositoryInterface;
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class BackendServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Register services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
$this->app->bind(UserRepositoryInterface::class,UserRepository::class);
|
|
}
|
|
|
|
/**
|
|
* Bootstrap services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
//
|
|
}
|
|
}
|