/
ildar8919
/
Mediahosting
Обзор
Документация
Войти
/
ildar8919
/
Mediahosting
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
app/Http/Middleware/TrustHosts.php
20 строк
372 B
Ildar
Добавление новых файлов
18 янв 2025, 15:18
18 янв 2025, 15:18
a5e5342
Код
Авторство
О чём код?
<?php namespace App\Http\Middleware; use Illuminate\Http\Middleware\TrustHosts as Middleware; class TrustHosts extends Middleware { /** * Get the host patterns that should be trusted. * * @return array<int, string|null> */ public function hosts() { return [ $this->allSubdomainsOfApplicationUrl(), ]; } }