# AppServiceProvider.php
public function register() {
$this->app->bind(
'App\Repo\IUserRepo',
'App\Repo\UserRepo'
);
$this->app->bind(
'App\Repo\IMessageRepo',
'App\Repo\MessageRepo'
);
}