1
0
mirror of https://github.com/robonen/metr.git synced 2026-03-20 19:04:43 +00:00
Files
metr/backend/app/Http/Middleware/TrustHosts.php
2022-05-25 22:37:52 +07:00

21 lines
372 B
PHP

<?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(),
];
}
}