allerta-vvf/backend/app/Http/Middleware/TrustHosts.php

21 lines
379 B
PHP
Raw Normal View History

2023-02-19 01:40:12 +01:00
<?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(),
];
}
}