Файловый менеджер - Редактировать - /home/clickysoft/public_html/benchexc.clickysoft.net/app/Providers/RepositorySeviceProvider.php
Назад
<?php namespace App\Providers; use App\Interfaces\Admin\CitiesRepositoryInterface; use App\Interfaces\Admin\CompanyManageRepositoryInterface; use App\Interfaces\Admin\IndustryRepositoryInterface; use App\Interfaces\Admin\NeededTalentResourceRepositoryInterface; use App\Interfaces\Admin\OpportunityRepositoryInterface; use App\Interfaces\Admin\ResourceRepositoryInterface; use App\Interfaces\Admin\TechStackRepositoryInterface; use App\Interfaces\Admin\UserRepositoryInterface; use App\Interfaces\Api\AuthenticationApiRepositoryInterface; use App\Interfaces\Api\CityApiRepositoryInterface; use App\Interfaces\Api\CompanyApiRepositoryInterface; use App\Interfaces\Api\IndustryApiRepositoryInterface; use App\Interfaces\Api\TechStackApiRepositoryInterface; use App\Interfaces\NeededTalentRepositoryInterface; use App\Interfaces\OpportunitiesRepositoryInterface; use App\Interfaces\ResourcesRepositoryInterface; use App\Interfaces\SearchRepositoryInterface; use App\Repositories\Admin\CitiesRepository; use App\Repositories\Admin\CompanyManageRepository; use App\Repositories\Admin\IndustryRepository; use App\Repositories\Admin\NeededTalentResourceRepository; use App\Repositories\Admin\OpportunityRepository; use App\Repositories\Admin\ResourceRepository; use App\Repositories\Admin\TechStackRepository; use App\Repositories\Admin\UserRepository; use App\Repositories\Api\AuthenticationApiRepository; use App\Repositories\Api\CityApiRepository; use App\Repositories\Api\CompanyApiRepository; use App\Repositories\Api\IndustryApiRepository; use App\Repositories\Api\TechStackApiRepository; use App\Repositories\NeededTalentRepository; use App\Repositories\OpportunitiesRepository; use App\Repositories\ResourcesRepository; use App\Repositories\SearchRepository; use Illuminate\Support\ServiceProvider; class RepositorySeviceProvider extends ServiceProvider { /** * Register services. */ public function register(): void { // } /** * Bootstrap services. */ public function boot(): void { // ADMIN $this->app->bind(UserRepositoryInterface::class,UserRepository::class); $this->app->bind(TechStackRepositoryInterface::class,TechStackRepository::class); $this->app->bind(IndustryRepositoryInterface::class,IndustryRepository::class); $this->app->bind(CompanyManageRepositoryInterface::class,CompanyManageRepository::class); $this->app->bind(ResourceRepositoryInterface::class,ResourceRepository::class); $this->app->bind(OpportunityRepositoryInterface::class,OpportunityRepository::class); $this->app->bind(NeededTalentResourceRepositoryInterface::class,NeededTalentResourceRepository::class); $this->app->bind(SearchRepositoryInterface::class,SearchRepository::class); $this->app->bind(CitiesRepositoryInterface::class,CitiesRepository::class); // API $this->app->bind(AuthenticationApiRepositoryInterface::class,AuthenticationApiRepository::class); $this->app->bind(IndustryApiRepositoryInterface::class,IndustryApiRepository::class); $this->app->bind(CityApiRepositoryInterface::class,CityApiRepository::class); $this->app->bind(TechStackApiRepositoryInterface::class,TechStackApiRepository::class); $this->app->bind(CompanyApiRepositoryInterface::class,CompanyApiRepository::class); $this->app->bind(OpportunitiesRepositoryInterface::class, OpportunitiesRepository::class); $this->app->bind(ResourcesRepositoryInterface::class,ResourcesRepository::class); $this->app->bind(NeededTalentRepositoryInterface::class,NeededTalentRepository::class); } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка