/
marklis
/
transport
Обзор
Документация
Войти
/
marklis
/
transport
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
app/Http/Middleware/TrustHosts.php
20 строк
379 B
Мамонов Алексей Анатольевич
Инициализация
14 ноя 2023, 12:23
14 ноя 2023, 12:23
9cf4313
Код
Авторство
О чём код?
<?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(): array { return [ $this->allSubdomainsOfApplicationUrl(), ]; } }