Файловый менеджер - Редактировать - /home/clickysoft/public_html/travel-guru.clickysoft.net/app/Providers/RepositoryServiceProvider.php
Назад
<?php namespace App\Providers; use App\Interfaces\AppointmentRepositoryInterface; use App\Interfaces\BadgeRepositoryInterface; use App\Interfaces\CategoryRepositoryInterface; use App\Interfaces\CountryRepositoryInterface; use App\Interfaces\DestinationRepositoryInterface; use App\Interfaces\ManageRoleRepositoryInterface; use App\Interfaces\ManageUserRepositoryInterface; use App\Interfaces\Front\HomepageRepositoryInterface; use App\Interfaces\ManageSubscriberRepositoryInterface; use App\Interfaces\ManageTravelAgentRepositoryInterface; use App\Interfaces\SiteSettingRepositoryInterface; use App\Interfaces\UserRepositoryInterface; use App\Repositories\DestinationRepository; use App\Repositories\ManageRoleRepository; use App\Repositories\ManageUserRepository; use App\Repositories\Front\HomepageRepository; use App\Repositories\SiteSettingRepository; use App\Repositories\UserRepository; use Illuminate\Support\ServiceProvider; use App\Interfaces\RegionRepositoryInterface; use App\Interfaces\UserChatRepositoryInterface; use App\Repositories\AppointmentRepository; use App\Repositories\BadgeRepository; use App\Repositories\CategoryRepository; use App\Repositories\CountryRepository; use App\Repositories\ManageSubscriberRepository; use App\Repositories\ManageTravelAgentRepository; use App\Repositories\RegionRepository; use App\Repositories\UserChatRepository; class RepositoryServiceProvider extends ServiceProvider { /** * Register services. * * @return void */ public function register() { // } /** * Bootstrap services. * * @return void */ public function boot() { $this->app->bind(UserRepositoryInterface::class, UserRepository::class); $this->app->bind(ManageUserRepositoryInterface::class, ManageUserRepository::class); $this->app->bind(ManageRoleRepositoryInterface::class, ManageRoleRepository::class); $this->app->bind(SiteSettingRepositoryInterface::class, SiteSettingRepository::class); $this->app->bind(DestinationRepositoryInterface::class, DestinationRepository::class); $this->app->bind(HomepageRepositoryInterface::class, HomepageRepository::class); $this->app->bind(RegionRepositoryInterface::class, RegionRepository::class); $this->app->bind(CategoryRepositoryInterface::class, CategoryRepository::class); $this->app->bind(ManageTravelAgentRepositoryInterface::class, ManageTravelAgentRepository::class); $this->app->bind(BadgeRepositoryInterface::class, BadgeRepository::class); $this->app->bind(ManageSubscriberRepositoryInterface::class, ManageSubscriberRepository::class); $this->app->bind(CountryRepositoryInterface::class, CountryRepository::class); $this->app->bind(AppointmentRepositoryInterface::class, AppointmentRepository::class); $this->app->bind(UserChatRepositoryInterface::class, UserChatRepository::class); } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка